A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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

  附一个常用的遍历像素点转换的代码
构造函数   
  1. <font size="2" color="#000000">public Tphc()  
  2. {  
  3.     InitializeComponent();  
  4.     this.pictureBox1.ImageLocation = "F:\\黑色头发.jpg";  
  5. } </font>
复制代码
按钮单击事件
  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. }
复制代码




1 个回复

倒序浏览
值得学习ing!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马