图像处理-04-图像的黑白处理_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 图像处理-04-图像的黑白处理

图像处理-04-图像的黑白处理

 2013/11/3 18:25:56  种花生的读书人  博客园  我要评论(0)
  • 摘要:图像的黑白处理彩色图像的黑白处理通常有三种方法解决:最大值法、平均值发、加权平均值。publicBitmapBlackWhiteDel(Imageimage){intwidth=image.Width;intheight=image.Height;Bitmaptemp=newBitmap(width,height);Bitmapbitmap=(Bitmap)image;Colorpixel;for(intx=0;x<width;x++){for(inty=0;y<height
  • 标签:图像处理

class="title">图像的黑白处理

彩色图像的黑白处理通常有三种方法解决:最大值法、平均值发、加权平均值。

        public Bitmap BlackWhiteDel(Image image)
        {
            int width = image.Width;
            int height = image.Height;

            Bitmap temp = new Bitmap( width, height );
            Bitmap bitmap = (Bitmap)image;
            Color pixel;

            for (int x = 0; x < width; x++)
            {
                for (int y = 0; y < height; y++)
                {
                    int r, g, b, avg;
                    pixel = bitmap.GetPixel( x, y );
                    avg=(pixel.R+pixel.G+pixel.B)/3;
                    r = avg;
                    g = avg;
                    b = avg;
                    temp.SetPixel( x, y, Color.FromArgb( r, g, b ) );
                }
            }
            return temp;
        }

max=avg = Math.Max( pixel.R, pixel.G ) > pixel.B ? Math.Max( pixel.R, pixel.G ) : pixel.B; //最大值

avg = (int)(0.11 * pixel.R + 0.55 * pixel.G + 0.34 * pixel.B) / 3;//加权平均值

上一篇: C#线程池用法 下一篇: sealing violation
发表评论
用户名: 匿名