C#进行图像处理的几种方法(bitmap,bitmapData,IntPtr)

来源:互联网 发布:软件系统接口设计方案 编辑:程序博客网 时间:2024/05/21 19:37

本文讨论了C#图像处理中Bitmap类、BitmapData类和unsafe代码的使用以及字节对齐问题。

Bitmap类

命名空间:System.Drawing

封装 GDI+ 位图,此位图由图形图像及其属性的像素数据组成。Bitmap 是用于处理由像素数据定义的图像的对象。

利用C#类进行图像处理,最方便的是使用Bitmap类,使用该类的GetPixel()与SetPixel()来访问图像的每个像素点。下面是MSDN中的示例代码:

public void GetPixel_Example(PaintEventArgs e)

{

// Create a Bitmap object from an image file.

Bitmap myBitmap = new Bitmap(“Grapes.jpg”);

// Get the color of a pixel within myBitmap.

Color pixelColor = myBitmap.GetPixel(50, 50);

// Fill a rectangle with pixelColor.

SolidBrush pixelBrush = new SolidBrush(pixelColor);

e.Graphics.FillRectangle(pixelBrush, 0, 0, 100, 100);

}

可见,Bitmap类使用一种优雅的方式来操作图像,但是带来的性能的降低却是不可忽略的。比如对一个800*600的彩色图像灰度化,其耗费的时间都要以秒为单位来计算。在实际项目中进行图像处理,这种速度是决对不可忍受的。

 

BitmapData类

命名空间:System.Drawing.Imaging

指定位图图像的属性。BitmapData 类由 Bitmap 类的 LockBits 和 UnlockBits 方法使用。不可继承。

好在我们还有BitmapData类,通过BitmapData BitmapData LockBits ( )可将 Bitmap 锁定到系统内存中。该类的公共属性有:

  • Width           获取或设置 Bitmap 对象的像素宽度。这也可以看作是一个扫描行中的像素数。
  • Height          获取或设置 Bitmap 对象的像素高度。有时也称作扫描行数。
  • PixelFormat  获取或设置返回此 BitmapData 对象的 Bitmap 对象中像素信息的格式。
  • Scan0            获取或设置位图中第一个像素数据的地址。它也可以看成是位图中的第一个扫描行。
  • Stride            获取或设置 Bitmap 对象的跨距宽度(也称为扫描宽度)。

下面的MSDN中的示例代码演示了如何使用 PixelFormat、Height、Width 和 Scan0 属性;LockBits 和 UnlockBits 方法;以及 ImageLockMode 枚举。

private void LockUnlockBitsExample(PaintEventArgs e)

{

// Create a new bitmap.

Bitmap bmp = new Bitmap(“c:\fakePhoto.jpg”);

// Lock the bitmap’s bits.

Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);

System.Drawing.Imaging.BitmapData bmpData =

bmp.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite,

bmp.PixelFormat);

// Get the address of the first line.

IntPtr ptr = bmpData.Scan0;

// Declare an array to hold the bytes of the bitmap.

int bytes  = bmpData.Stride * bmp.Height;

byte[] rgbValues = new byte[bytes];

// Copy the RGB values into the array.

System.Runtime.InteropServices.Marshal.Copy(ptr, rgbValues, 0, bytes);

// Set every red value to 255.

for (int counter = 0; counter < rgbValues.Length; counter+=3)

rgbValues[counter] = 255;

// Copy the RGB values back to the bitmap

System.Runtime.InteropServices.Marshal.Copy(rgbValues, 0, ptr, bytes);

// Unlock the bits.

bmp.UnlockBits(bmpData);

// Draw the modified image.

e.Graphics.DrawImage(bmp, 0, 150);

}

 

 

 

 

 

上面的代码演示了如何用数组的方式来访问一幅图像,而不在使用低效的GetPixel()和SetPixel()。

 

unsafe代码

而在实际中上面的做法仍然不能满足我们的要求,图像处理是一种运算量比较大的操作,不同于我们写的一般的应用程序。我们需要的是一种性能可以同C++程序相媲美的图像处理程序。C++是怎么提高效率的呢,答曰:指针。幸运的是.Net也允许我们使用指针,只能在非安全代码块中使用指针。何谓非安全代码?

为了保持类型安全,默认情况下,C# 不支持指针运算。不过,通过使用 unsafe 关键字,可以定义可使用指针的不安全上下文。在公共语言运行库 (CLR) 中,不安全代码是指无法验证的代码。C# 中的不安全代码不一定是危险的,只是其安全性无法由 CLR 进行验证的代码。因此,CLR 只对在完全受信任的程序集中的不安全代码执行操作。如果使用不安全代码,由您负责确保您的代码不会引起安全风险或指针错误。不安全代码具有下列属性:

  • 方法、类型和可被定义为不安全的代码块。
  • 在某些情况下,通过移除数组界限检查,不安全代码可提高应用程序的性能。
  • 当调用需要指针的本机函数时,需要使用不安全代码。
  • 使用不安全代码将引起安全风险和稳定性风险。
  • 在 C# 中,为了编译不安全代码,必须用 /unsafe 编译应用程序。

正如《C#语言规范》中所说无论从开发人员还是从用户角度来看,不安全代码事实上都是一种“安全”功能。不安全代码必须用修饰符 unsafe 明确地标记,这样开发人员就不会误用不安全功能,而执行引擎将确保不会在不受信任的环境中执行不安全代码。

以下代码演示如何借助BitmapData类采用指针的方式来遍历一幅图像,这里的unsafe代码块中的代码就是非安全代码。

//创建图像

Bitmap image =  new Bitmap( “c:\images\image.gif” );

//获取图像的BitmapData对像

BitmapData data = image.LockBits( new Rectangle( 0 , 0 , image.Width , image.Height ) , ImageLockMode.ReadWrite  , PixelFormat.Format24bppRgb  );

//循环处理

unsafe

{

byte* ptr = ( byte* )( data.Scan0 );

for( int i = 0 ; i < data.Height ; i ++ )

{

for( int j = 0 ;  j < data.Width ;  j ++ )

{

// write the logic implementation here

ptr += 3;

}

ptr += data.Stride – data.Width * 3;

}

}

毫无疑问,采用这种方式是最快的,所以在实际工程中都是采用指针的方式来访问图像像素的。

 

字节对齐问题

上例中ptr += data.Stride – data.Width * 3,表示跨过无用的区域,其原因是图像数据在内存中存储时是按4字节对齐的,具体解释如下:

假设有一张图片宽度为6,假设是Format24bppRgb格式的(每像素3字节,在以下的讨论中,除非特别说明,否则Bitmap都被认为是24位RGB)。显然,每一行需要6*3=18个字节存储。对于Bitmap就是如此。但对于BitmapData,虽然data.Width还是等于image.Width,但大概是出于显示性能的考虑,每行的实际的字节数将变成大于等于它的那个离它最近的4的整倍数,此时的实际字节数就是Stride。就此例而言,18不是4的整倍数,而比18大的离18最近的4的倍数是20,所以这个data.Stride = 20。显然,当宽度本身就是4的倍数时,data.Stride = image.Width * 3。

画个图可能更好理解。R、G、B 分别代表3个原色分量字节,BGR就表示一个像素。为了看起来方便我在们每个像素之间插了个空格,实际上是没有的。X表示补足4的倍数而自动插入的字节。为了符合人类的阅读习惯我分行了,其实在计算机内存中应该看成连续的一大段。

|-------Stride-----------|

|-------Width---------| |

Scan0:

BGR BGR BGR BGR BGR BGR XX

BGR BGR BGR BGR BGR BGR XX

BGR BGR BGR BGR BGR BGR XX

.

.

.

首先用data.Scan0找到第0个像素的第0个分量的地址,这个地址指向的是个byte类型,所以当时定义为byte* ptr。行扫描时,在当前指针位置(不妨看成当前像素的第0个颜色分量)连续取出三个值(3个原色分量。注意,0 1 2代表的次序是B G R。在取指针指向的值时,貌似p[n]和p += n再取p[0]是等价的),然后下移3个位置(ptr += 3,看成指到下一个像素的第0个颜色分量)。做过Bitmap.Width次操作后,就到达了Bitmap.Width * 3的位置,应该要跳过图中标记为X的字节了(共有Stride – Width * 3个字节),代码中就是 ptr += dataIn.Stride – dataIn.Width * 3。

通过阅读本文,相信你已经对使用C#进行图像处理可能用到的几种方法有了一个了解。至于采用哪种方式,取决于你的性能要求。其中第一种方式最优雅;第三种方式最快,但不是安全代码;第二种方式取了个折中,保证是安全代码的同时又提高了效率。熟悉C/C++编程的人可能会比较偏向于第三种方式,我个人也比较喜欢第三种方式。

一.Bitmap

Bitmap对象封装了GDI+中的一个位图,此位图由图形图像及其属性的像素数据组成.因此Bitmap是用于处理由像素数据定义的图像的对象.该类的主要方法和属性如下:

1. GetPixel方法和SetPixel方法:获取和设置一个图像的指定像素的颜色.

2. PixelFormat属性:返回图像的像素格式.

3. Palette属性:获取和设置图像所使用的颜色调色板.

4. Height Width属性:返回图像的高度和宽度.

5. LockBits方法和UnlockBits方法:分别锁定和解锁系统内存中的位图像素.在基于像素点的图像处理方法中使用LockBitsUnlockBits是一个很好的方式,这两种方法可以使我们指定像素的范围来控制位图的任意一部分,从而消除了通过循环对位图的像素逐个进行处理,每调用LockBits之后都应该调用一次UnlockBits.

二.BitmapData

BitmapData对象指定了位图的属性

1. Height属性:被锁定位图的高度.

2. Width属性:被锁定位图的高度.

3. PixelFormat属性:数据的实际像素格式.

4. Scan0属性:被锁定数组的首字节地址,如果整个图像被锁定,则是图像的第一个字节地址.

5. Stride属性:步幅,也称为扫描宽度.

如上图所示,数组的长度并不一定等于图像像素数组的长度,还有一部分未用区域,这涉及到位图的数据结构,系统要保证每行的字节数必须为4的倍数.

三.Graphics

Graphics对象是GDI+的关键所在,许多对象都是由Graphics类表示的,该类定义了绘制和填充图形对象的方法和属性,一个应用程序只要需要进行绘制或着色,它就必须使用Graphics对象.

四.Image

这个类提供了位图和元文件操作的函数.Image类被声明为abstract,也就是说Image类不能实例化对象,而只能做为一个基类

1.FromFile方法:它根据输入的文件名产生一个Image对象,它有两种函数形式:

public static Image FromFile(string filename);

public static Image FromFile(string filename, bool useEmbeddedColorManagement);

2.FromHBitmap方法:它从一个windows句柄处创建一个bitmap对象,它也包括两种函数形式:

public static bitmap fromhbitmap(intptr hbitmap);

public static bitmap fromhbitmap(intptr hbitmap, intptr hpalette);

3. FromStream方法:从一个数据流中创建一个image对象,它包含三种函数形式:

public static image fromstream(stream stream);

public static image fromstream(stream stream, bool useembeddedcolormanagement);

fromstream(stream stream, bool useembeddedcolormanagement, bool validateimagedata);

有了上面的了解,我们便可以开始利用C#做图像处理,下面介绍几种方法:

打开、保存、显示图像

privateBitmap srcBitmap = null;

privateBitmap showBitmap = null;

//打开文件

privatevoid menuFileOpen_Click(object sender, EventArgs e)

{

OpenFileDialog openFileDialog = newOpenFileDialog();

openFileDialog.Filter = @”Bitmap文件(*.bmp)|*.bmp|Jpeg文件(*.jpg)|*.jpg|所有合适文件(*.bmp,*.jpg)|*.bmp;*.jpg”;

openFileDialog.FilterIndex = 3;

openFileDialog.RestoreDirectory = true;

if (DialogResult.OK == openFileDialog.ShowDialog())

{

srcBitmap = (Bitmap)Bitmap.FromFile(openFileDialog.FileName, false);

showBitmap = srcBitmap;

this.AutoScroll = true;

this.AutoScrollMinSize =

newSize((int)(showBitmap.Width), (int)(showBitmap.Height));

this.Invalidate();

}

}

//保存图像文件

privatevoid menuFileSave_Click(object sender, EventArgs e)

{

if (showBitmap != null)

{

SaveFileDialog saveFileDialog = newSaveFileDialog();

saveFileDialog.Filter =

@”Bitmap文件(*.bmp)|*.bmp|Jpeg文件(*.jpg)|*.jpg|所有合适文件(*.bmp,*.jpg)|*.bmp;*.jpg”;

saveFileDialog.FilterIndex = 3;

saveFileDialog.RestoreDirectory = true;

if (DialogResult.OK == saveFileDialog.ShowDialog())

{

ImageFormat format = ImageFormat.Jpeg;

switch (Path.GetExtension(saveFileDialog.FileName).ToLower())

{

case”.jpg”:

format = ImageFormat.Jpeg;

break;

case”.bmp”:

format = ImageFormat.Bmp;

break;

default:

MessageBox.Show(this, “Unsupported image format was specified”, “Error”,

MessageBoxButtons.OK, MessageBoxIcon.Error);

return;

}

try

{

showBitmap.Save(saveFileDialog.FileName,format );

}

catch (Exception)

{

MessageBox.Show(this, “Failed writing image file”, “Error”,

MessageBoxButtons.OK, MessageBoxIcon.Error);

}

}

}

}

c#中将bitmap或者image保存为清晰的gif

c#中默认可以讲bitmap保存为gif等格式,但是这种保存方法保存的gif会严重失真,正常情况下的代码:

1 System.Drawing.Bitmap b = new System.Drawing.Bitmap(“c://original_image.gif“);

System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());

thmbnail.Save(“c://thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);

 

一个批量处理图片的软件,包括各种处理方式,处理效果,但是在保存为gif的时候出现了问题,在网上查了很久也没有发现一个可用的改善gif图片质量的方法,找到了一个解决办法,保存出来的gif容量大减,但是效果基本符合常规这中方法就是就是“Octree“ 算法。

“Octree“ 算法允许我们插入自己的算法来量子化我们的图像。

一个好的颜色量子化算法应该考虑在两个像素颗粒之间填充与这两个像素颜色相近的过渡颜色,提供更多可视颜色空间。

Morgan Skinner提供了很好的“Octree“ 算法代码,大家可以下载参考使用。

使用OctreeQuantizer很方便:

System.Drawing.Bitmap b = new System.Drawing.Bitmap(c://original_image.gif);

System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());

OctreeQuantizer quantizer = new OctreeQuantizer ( 255 , 8 ) ;

using ( Bitmap quantized = quantizer.Quantize ( thmbnail ) )

{

quantized.Save(c://thumnail.gif, System.Drawing.Imaging.ImageFormat.Gif);

}

OctreeQuantizer grayquantizer = new GrayscaleQuantizer ( ) ;

using ( Bitmap quantized = grayquantizer.Quantize ( thmbnail ) )

{

quantized.Save(c://thumnail.gif, System.Drawing.Imaging.ImageFormat.Gif);

}

你可以点击这里下载类的文件(项目文件),根据我的试用,只需要两个类文件(OctreeQuantizer.cs,Quantizer.cs)即可运行,将这两个类文件的namespace改成你项目的名称就行,还有,需要在不安全编译的方式下编译,右击项目名称,在生成选项卡里选择允许不安全代码即可

//窗口重绘,在窗体上显示图像,重载Paint

privatevoid frmMain_Paint(object sender, System.Windows.Forms.PaintEventArgs e)

{

if (showBitmap != null)

{

Graphics g = e.Graphics;

g.DrawImage(showBitmap, newRectangle(this.AutoScrollPosition.X, this.AutoScrollPosition.Y ,

(int)(showBitmap.Width), (int)(showBitmap.Height)));

}

}

//灰度化

privatevoid menu2Gray_Click(object sender, EventArgs e)

{

if (showBitmap == null) return;

showBitmap = RGB2Gray(showBitmap);//下面都以RGB2Gray为例

this.Invalidate();

}

提取像素法

这种方法简单易懂,但相当耗时,完全不可取.

publicstaticBitmap RGB2Gray(Bitmap srcBitmap)

{

Color srcColor;

int wide = srcBitmap.Width;

int height = srcBitmap.Height;

for (int y = 0; y < height; y++)

for (int x = 0; x < wide; x++)

{

//获取像素的RGB颜色值

srcColor = srcBitmap.GetPixel(x, y);

byte temp = (byte)(srcColor.R * .299 + srcColor.G * .587 + srcColor.B * .114);

//设置像素的RGB颜色值

srcBitmap.SetPixel(x, y, Color.FromArgb(temp, temp, temp));

}

return srcBitmap ;

}

内存法

这是比较常用的方法

publicstaticBitmap RGB2Gray(Bitmap srcBitmap)

{

int wide = srcBitmap.Width;

int height = srcBitmap.Height;

Rectangle rect = newRectangle(0, 0, wide, height);

//Bitmap锁定到系统内存中,获得BitmapData

BitmapData srcBmData = srcBitmap.LockBits(rect,

ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

//创建Bitmap

Bitmap dstBitmap = CreateGrayscaleImage(wide, height);//这个函数在后面有定义

BitmapData dstBmData = dstBitmap.LockBits(rect,

ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);

//位图中第一个像素数据的地址。它也可以看成是位图中的第一个扫描行

System.IntPtr srcPtr = srcBmData.Scan0;

System.IntPtr dstPtr = dstBmData.Scan0;

//Bitmap对象的信息存放到byte数组中

int src_bytes = srcBmData.Stride * height;

byte[] srcValues = newbyte[src_bytes];

int dst_bytes = dstBmData.Stride * height;

byte[] dstValues = newbyte[dst_bytes];

//复制GRB信息到byte数组

System.Runtime.InteropServices.Marshal.Copy(srcPtr, srcValues, 0, src_bytes);

System.Runtime.InteropServices.Marshal.Copy(dstPtr, dstValues, 0, dst_bytes);

//根据Y=0.299*R+0.114*G+0.587B,Y为亮度

for (int i = 0; i < height; i++)

for (int j = 0; j < wide; j++)

{

//只处理每行中图像像素数据,舍弃未用空间

//注意位图结构中RGBBGR的顺序存储

int k = 3 * j;

byte temp = (byte)(srcValues[i * srcBmData.Stride + k + 2] * .299

+ srcValues[i * srcBmData.Stride + k + 1] * .587

+ srcValues[i * srcBmData.Stride + k] * .114);

dstValues[i * dstBmData.Stride + j] = temp;

}

System.Runtime.InteropServices.Marshal.Copy(dstValues, 0, dstPtr, dst_bytes);

//解锁位图

srcBitmap.UnlockBits(srcBmData);

dstBitmap.UnlockBits(dstBmData);

return dstBitmap;

}

 指针法

C/C++的习惯,不是C#的特点

publicstaticBitmap RGB2Gray(Bitmap srcBitmap)

{

int wide = srcBitmap.Width;

int height = srcBitmap.Height ;

Rectangle rect = newRectangle(0, 0, wide, height);

BitmapData srcBmData = srcBitmap.LockBits(rect,

ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

Bitmap dstBitmap = CreateGrayscaleImage(wide, height);

BitmapData dstBmData = dstBitmap.LockBits(rect,

ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);

System.IntPtr srcScan = srcBmData.Scan0;

System.IntPtr dstScan = dstBmData.Scan0;

Unsafe //启动不安全代码

{

byte* srcP = (byte*)(void*) srcScan;

byte* dstP = (byte*)(void*) dstScan;

int srcOffset = srcBmData.Stride – wide * 3;

int dstOffset = dstBmData.Stride – wide ;

byte red, green, blue;

for (int y = 0; y < height; y++)

{

for (int x = 0; x <wide ; x++, srcP += 3, dstP++)

{

blue = srcP [0];

green = srcP [1];

red = srcP [2];

* dstP = (byte)(.299 * red + .587 * green + .114 * blue);

}

srcP += srcOffset;

dstP += dstOffset;

}

}

srcBitmap.UnlockBits(srcBmData);

dstBitmap.UnlockBits(dstBmData );

return dstBitmap;

}

矩阵法

并不是什么新方法,只是将图像数据分做R,G,B三个矩阵(二维数组)存储,类似MATLAB的习惯.

publicstaticbool GetRGB(Bitmap Source, outint[,] R, outint[,] G, outint[,] B)

{

try

{

int iWidth = Source.Width;

int iHeight = Source.Height;

Rectangle rect = newRectangle(0, 0, iWidth, iHeight);

System.Drawing.Imaging.BitmapData bmpData = Source.LockBits(rect,

System.Drawing.Imaging.ImageLockMode.ReadWrite, Source.PixelFormat);

IntPtr iPtr = bmpData.Scan0;

int iBytes = iWidth * iHeight * 3;

byte[] PixelValues = new byte[iBytes];

System.Runtime.InteropServices.Marshal.Copy(iPtr, PixelValues, 0, iBytes);

Source.UnlockBits(bmpData);

R = newint[iHeight, iWidth];

G = newint[iHeight, iWidth];

B = newint[iHeight, iWidth];

int iPoint = 0;

for (int i = 0; i < iHeight; i++)

{

for (int j = 0; j < iWidth; j++)

{

B[i, j] = Convert.ToInt32(PixelValues[iPoint++]);

G[i, j] = Convert.ToInt32(PixelValues[iPoint++]);

R[i, j] = Convert.ToInt32(PixelValues[iPoint++]);

}

}

return true;

}

catch (Exception)

{

R = null;

G = null;

B = null;

returnfalse;

}

}

publicstaticBitmap FromRGB(int[,] R, int[,] G, int[,] B)

{

int iWidth = G.GetLength(1);

int iHeight = G.GetLength(0);

Bitmap Result = newBitmap(iWidth, iHeight,

System.Drawing.Imaging.PixelFormat.Format24bppRgb);

Rectangle rect = newRectangle(0, 0, iWidth, iHeight);

System.Drawing.Imaging.BitmapData bmpData = Result.LockBits(rect,

System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format24bppRgb);

IntPtr iPtr = bmpData.Scan0;

int iStride = bmpData.Stride;

int iBytes = iWidth * iHeight * 3;

byte[] PixelValues = newbyte[iBytes];

int iPoint = 0;

for (int i = 0; i < iHeight; i++)

for (int j = 0; j < iWidth; j++)

{

int iG = G[i, j];

int iB = B[i, j];

int iR = R[i, j];

PixelValues[iPoint] = Convert.ToByte(iB);

PixelValues[iPoint + 1] = Convert.ToByte(iG);

PixelValues[iPoint + 2] = Convert.ToByte(iR);

iPoint += 3;

}

System.Runtime.InteropServices.Marshal.Copy(PixelValues, 0, iPtr, iBytes);

Result.UnlockBits(bmpData);

return Result;

}

publicstaticbool GetGray(Bitmap srcBitmap, outbyte [,] gray)

Bitmap tempBitmap;

if (srcBitmap.PixelFormat != PixelFormat.Format8bppIndexed)

tempBitmap = ImageProcess.Image.Gray(srcBitmap);

else

tempBitmap = srcBitmap;

int wide = tempBitmap.Width;

int height = tempBitmap.Height;

gray = newbyte [height, wide];

BitmapData gbmData = tempBitmap.LockBits(newRectangle(0, 0, wide, height),

ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);

System.IntPtr ScanG = gbmData.Scan0;

int gOffset = gbmData.Stride – wide;

unsafe

{

byte* g = (byte*)(void*)ScanG;

for (int y = 0; y < height; y++)

{

for (int x = 0; x < wide; x++, g++)

{

gray[y ,x ] =*g;

}

g += gOffset;

}

}

tempBitmap.UnlockBits(gbmData);

returntrue ;

}

Public static Bitmap FromGray(byte [,] Gray)

{

int iWidth = Gray.GetLength(1);

int iHeight = Gray.GetLength(0);

Bitmap dstBitmap = ImageProcess.Image.CreateGrayscaleImage(iWidth, iHeight);

BitmapData gbmData = dstBitmap.LockBits(newRectangle(0, 0, iWidth, iHeight),

ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);

System.IntPtr ScanG = gbmData.Scan0;

int gOffset = gbmData.Stride – iWidth;

unsafe

{

byte* g = (byte*)(void*)ScanG;

for (int i = 0; i < iHeight; i++)

{

for (int j = 0; j < iWidth; j++)

{

*g=(byte )Gray[i, j] ;

g++;

}

g += gOffset;

}

}

dstBitmap.UnlockBits(gbmData);

return dstBitmap;

}

///<summary>

/// Create and initialize grayscale image

///</summary>

publicstaticBitmap CreateGrayscaleImage( int width, int height )

{

// create new image

Bitmap bmp = newBitmap( width, height, PixelFormat.Format8bppIndexed );

// set palette to grayscale

SetGrayscalePalette( bmp );

// return new image

return bmp;

}//#

///<summary>

/// Set pallete of the image to grayscale

///</summary>

publicstaticvoid SetGrayscalePalette( Bitmap srcImg )

{

// check pixel format

if ( srcImg.PixelFormat != PixelFormat.Format8bppIndexed )

thrownewArgumentException( );

// get palette

ColorPalette cp = srcImg.Palette;

// init palette

for ( int i = 0; i < 256; i++){

cp.Entries[i] = Color.FromArgb( i, i, i );

}

srcImg.Palette = cp;

}

C#数字图像处理的3种典型方法(精简版)

C#数字图像处理有3种典型方法:提取像素法、内存法、指针法。其中提取像素法使用的是GDI+中的Bitmap.GetPixelBitmap.SetPixel方法;内存法是通过LockBits方法来获取位图的首地址,从而把图像数据直接复制到内存中进行处理;指针法与内存法相似,但该方法直接应用指针对位图进行操作,由于在默认情况下,C#不支持指针运算,所以该方法只能在unsafe关键字所标记的代码块中使用。以一幅真彩色图像的灰度化为例,下面代码分别展现了这3种方法的使用,方便大家学习图像处理的基本技巧。

(1) 像素提取法

if (curBitmap != null)

{

Color curColor;

int gray;

for (int i = 0; i < curBitmap.Width; i++)

{

for (int j = 0; j < curBitmap.Height; j++)

{

curColor = curBitmap.GetPixel(i, j);

gray = (int)(0.3 * curColor.R + 0.59 * curColor.G * 0.11 * curColor.B);

curBitmap.SetPixel(i, j, curColor);

}

}

}

(2) 内存法

if (curBitmap != null)

{

int width = curBitmap.Width;

int height = curBitmap.Height;

int length = height * 3 * width;

RGB = new byte[length];

BitmapData data = curBitmap.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

System.IntPtr Scan0 = data.Scan0;

System.Runtime.InteropServices.Marshal.Copy(Scan0, RGB, 0, length);

double gray = 0;

for (int i = 0; i < RGB.Length; i=i+3)

{

gray = RGB[i + 2] * 0.3 + RGB[i + 1] * 0.59 + RGB[i] * 0.11;

RGB[i + 2] = RGB[i + 1] = RGB[i] = (byte)gray;

}

System.Runtime.InteropServices.Marshal.Copy(RGB, 0, Scan0, length);

curBitmap.UnlockBits(data);

}

(3) 指针法

if (curBitmap != null)

{

int width = curBitmap.Width;

int height = curBitmap.Height;

BitmapData data = curBitmap.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

System.IntPtr Scan0 = data.Scan0;

int stride = data.Stride;

System.Runtime.InteropServices.Marshal.Copy(Scan0, RGB, 0, length);

unsafe

{

byte* p = (byte*)Scan0;

int offset = stride – width * 3;

double gray = 0;

for (int y = 0; y < height; y++)

{

for (int x = 0; x < width; x++)

{

gray = 0.3 * p[2] + 0.59 * p[1] + 0.11 * p[0];

p[2] = p[1] = p[0] = (byte)gray;

p += 3;

}

p += offset;

}

}

curBitmap.UnlockBits(data);

}

在以上3种方法中,提取像素法能直观的展示图像处理过程,可读性很好,但效率最低,并不适合做图像处理方面的工程应用;内存法把图像直接复制到内存中,直接对内存中的数据进行处理,速度明显提高,程序难度也不大;指针法直接应用指针来对图像进行处理,所以速度最快。

简单图片处理函数代码(C#

一、生成图片并实现颜色渐变效果

Response.Clear();

Bitmap imgOutput = new Bitmap(100, 50);

Graphics gic = Graphics.FromImage(imgOutput);

gic.Clear(Color.BlueViolet);

gic.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;

gic.DrawString(“渐变图形“, new Font(“黑体“,16,FontStyle.Italic),

new SolidBrush(Color.White),new PointF(2,2));

gic.FillRectangle(new System.Drawing.Drawing2D.LinearGradientBrush(new Point(0,0),

new Point(100,50), Color.FromArgb(0,0,0,0),

Color.FromArgb(255,255,255,255)),0,0,100,50);

imgOutput.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);

gic.Dispose();

imgOutput.Dispose();

Response.End();

二、对图片进行反转

System.Drawing.Image drawimage = System.Drawing.Image.FromFile(photopath);//photopath表示图片的物理地址

drawimage.RotateFlip(RotateFlipType.Rotate270FlipNone);

if(File.Exists(photopath))

{

File.SetAttributes(photopath,FileAttributes.Normal);

File.Delete(photopath);

}

drawimage.Save(photopath,System.Drawing.Imaging.ImageFormat.Jpeg);

drawimage.Dispose();

三、对图片进行缩放

System.Drawing.Image drawimage = System.Drawing.Image.FromFile(photopath);

Bitmap imgOutput = new Bitmap(drawimage,60,30);

imgOutput.Save(newphotppath, System.Drawing.Imaging.ImageFormat.Jpeg);

imgOutput.Dispose();

Response.End();

其他还有一些画线、画矩形、画圆等的函数和方法都可以在System.Drawing中找到;

本文的实例是一个数字图像处理的应用程序,它完成的功能包括对图像颜色的翻转、对图像进行灰度处理和对图像进行增亮处理。该程序对图像进行处理部分的代码包含在一个专门的Filters类里面,通过调用该类里的静态成员函数,我们就可以实现相应的图像处理功能了。为实现图像处理,我们要对图像进行逐个象素处理。我们知道图像是由一个个的象素点组成的,对一幅图像的每个象素进行了相应的处理,最后整个图像也就处理好了。在这个过程中,我们只需对每个象素点进行相应的处理,在处理过程中却不需要考虑周围象素点对其的影响,所以相对来说程序的实现就变得简单多了。

由于GDI+中的BitmapData类不提供对图像内部数据的直接访问的方法,我们唯一的办法就是使用指针来获得图像的内部数据,这时我们就得运用unsafe这个关键字来指明函数中访问图像内部数据的代码块了。在程序中,我还运用了打开文件和保存文件等选项,以使我们的辛勤劳动不付之东流。

二.程序的实现:

Invert()、Gray()、Brightness()等三个函数均包含在Filters类里面,

Invert()函数的算法如下:

public static bool Invert(Bitmap b) 

{

BitmapData bmData = b.LockBits(new Rectangle(0, 0, b.Width, b.Height),

ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

int stride = bmData.Stride;

System.IntPtr Scan0 = bmData.Scan0;

unsafe

{

byte * p = (byte *)(void *)Scan0;

int nOffset = stride – b.Width*3;

int nWidth = b.Width * 3;

for(int y=0;y<b.Height;++y)

{

for(int x=0; x < nWidth; ++x )

{

p[0] = (byte)(255-p[0]);

++p;

}

p += nOffset;

}

}

b.UnlockBits(bmData);

return true;

}

该函数以及后面的函数的参数都是Bitmap类型的,它们传值的对象就是程序中所打开的图像文件了。该函数中的BitmapData类型的bmData包含了图像文件的内部信息,bmDataStride属性指明了一条线的宽度,而它的Scan0属性则是指向图像内部信息的指针。本函数完成的功能是图像颜色的翻转,实现的方法即用255减去图像中的每个象素点的值,并将所得值设置为原象素点处的值,对每个象素点进行如此的操作,只到整幅图像都处理完毕。函数中的unsafe代码块是整个函数的主体部分,首先我们取得图像内部数据的指针,然后设置好偏移量,同时设置nWidthb.Width*3,因为每个象素点包含了三种颜色成分,对每个象素点进行处理时便要进行三次处理。接下来运用两个嵌套的for循环完成对每个象素点的处理,处理的核心便是一句:p[0] = (byte)(255-p[0]);。在unsafe代码块后,便可运用b.UnlockBits(bmData)进行图像资源的释放。函数执行成功,最后返回true值。注:由于是要编译不安全代码,所以得将项目属性页中的允许不安全代码块属性设置为true

Gray()函数的算法如下:

public static bool Gray(Bitmap b) 

{

BitmapData bmData = b.LockBits(new Rectangle(0, 0, b.Width, b.Height),

ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);

int stride = bmData.Stride;

System.IntPtr Scan0 = bmData.Scan0;

unsafe

{

byte * p = (byte *)(void *)Scan0;

int nOffset = stride – b.Width*3;

byte red, green, blue;

for(int y=0;y<b.Height;++y)

{

for(int x=0; x < b.Width; ++x )

{

blue = p[0];

green = p[1];

red = p[2];

p[0] = p[1] = p[2] = (byte)(.299 * red + .587 * green + .114 * blue);

p += 3;

}

p += nOffset;

}

}

b.UnlockBits(bmData);

return true;

}

本函数完成的功能是对图像进行灰度处理,我们的基本想法可是将每个象素点的三种颜色成分的值取平均值。然而由于人眼的敏感性,这样完全取平均值的做法的效果并不好,所以在程序中我取了三个效果最好的参数:.299.587.114。不过在这里要向读者指明的是,在GDI+中图像存储的格式是BGR而非RGB,即其顺序为:BlueGreenRed。所以在for循环内部一定要设置好redgreenblue等变量的值,切不可颠倒。函数执行成功后,同样返回true值。

Brightness()函数的算法如下:

public static bool Brightness(Bitmap b, int nBrightness) 

{

if (nBrightness < -255 || nBrightness > 255)

return false;

BitmapData bmData = b.LockBits(new Rectangle(0, 0, b.Width,

b.Height), ImageLockMode.ReadWrite,

PixelFormat.Format24bppRgb);

int stride = bmData.Stride;

System.IntPtr Scan0 = bmData.Scan0;

int nVal = 0;

unsafe

{

byte * p = (byte *)(void *)Scan0;

int nOffset = stride – b.Width*3;

int nWidth = b.Width * 3;

for(int y=0;y<b.Height;++y)

{

for(int x=0; x < nWidth; ++x )

{

nVal = (int) (p[0] + nBrightness);

if (nVal < 0) nVal = 0;

if (nVal > 255) nVal = 255;

p[0] = (byte)nVal;

++p;

}

p += nOffset;

}

}

b.UnlockBits(bmData);

return true;

}

本函数完成的功能是对图像进行增亮处理,它比上面两个函数多了一个增亮参数-nBrightness,该参数由用户输入,范围为-255255。在取得了增亮参数后,函数的unsafe代码部分对每个象素点的不同颜色成分进行逐个处理,即在原来值的基础上加上一个增亮参数以获得新的值。同时代码中还有一个防止成分值越界的操作,因为RGB成分值的范围为0255,一旦超过了这个范围就要重新设置。函数最后执行成功后,同样得返回true值。

该函数实现的程序效果如下:

首先,我们把图像增亮的参数设置为100(其范围为-255255),然后执行效果如下,读者也可尝试其他的参数值。

三.小结:

本文通过一个简单的实例向大家展现了用Visual C#以及GDI+完成数字图像处理的基本方法,通过实例,我们不难发现合理运用新技术不仅可以大大简化我们的编程工作,还可以提高编程的效率。不过我们在运用新技术的同时也得明白掌握基本的编程思想才是最主要的,不同的语言、不同的机制只是实现的具体方式不同而已,其内在的思想还是相通的。对于上面的例子,掌握了编写图像处理函数的算法,用其他的方式实现也应该是可行的。同时,在上面的基础上,读者不妨试着举一反三,编写出更多的图像处理的函数来,以充实并完善这个简单的实例。

image与byte数组的转换

image to byte[] 

MemoryStream ms=new MemoryStream();

byte[] imagedata=null;

pictureBox1.Image.Save(ms,System.Drawing.Imaging.ImageFormat.Gif );

imagedata=ms.GetBuffer ();

byte[] to image

ms = New IO.MemoryStream(by)

img = Drawing.Image.FromStream(ms)

0 0
原创粉丝点击