码迷,mamicode.com
首页 > Windows程序 > 详细

c# winform 把彩色图片转换为灰色的图片,变灰,灰度图片,速度很快,safe,unsafe

时间:2014-07-16 21:05:07      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:winform   style   http   java   color   os   

把彩色图片转换为灰色的图片,直接用.net接口遍历每个像素点转换的效率非常低,800K的图片65万像素我的电脑要用5分钟,而用了unsafe,速度提高了几千倍,同样的图片只用了0.几秒 

附一个常用的遍历像素点转换的代码 

构造函数 

C#代码  bubuko.com,布布扣
  1. public Tphc()  
  2. {  
  3.     InitializeComponent();  
  4.     this.pictureBox1.ImageLocation = "F:\\黑色头发.jpg";  
  5. }  



按钮单击事件 

C#代码  bubuko.com,布布扣
  1. private void button3_Click(object sender, EventArgs e)  
  2. {  
  3.     int Height = this.pictureBox1.Image.Height;  
  4.     int Width = this.pictureBox1.Image.Width;  
  5.     Bitmap bitmap = new Bitmap(Width, Height);  
  6.     Bitmap MyBitmap = (Bitmap)this.pictureBox1.Image;  
  7.     Color pixel;  
  8.     for (int x = 0; x < Width; x++)  
  9.         for (int y = 0; y < Height; y++)  
  10.         {  
  11.             pixel = MyBitmap.GetPixel(x, y);  
  12.             int r, g, b, Result = 0;  
  13.             r = pixel.R;  
  14.             g = pixel.G;  
  15.             b = pixel.B;  
  16.             //实例程序以加权平均值法产生黑白图像  
  17.             int iType = 2;  
  18.             switch (iType)  
  19.             {  
  20.                 case 0://平均值法  
  21.                     Result = ((r + g + b) / 3);  
  22.                     break;  
  23.                 case 1://最大值法  
  24.                     Result = r > g ? r : g;  
  25.                     Result = Result > b ? Result : b;  
  26.                     break;  
  27.                 case 2://加权平均值法  
  28.                     Result = ((int)(0.7 * r) + (int)(0.2 * g) + (int)(0.1 * b));  
  29.                     break;  
  30.             }  
  31.             bitmap.SetPixel(x, y, Color.FromArgb(Result, Result, Result));  
  32.         }  
  33.     this.pictureBox1.Image = bitmap;  
  34. }  


c# winform 把彩色图片转换为灰色的图片,变灰,灰度图片,速度很快,safe,unsafe,布布扣,bubuko.com

c# winform 把彩色图片转换为灰色的图片,变灰,灰度图片,速度很快,safe,unsafe

标签:winform   style   http   java   color   os   

原文地址:http://www.cnblogs.com/gc2013/p/3836146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!