本文实例讲述了C#数字图象处理之图像灰度化方法。分享给大家供大家参考。具体如下:
//定义图像灰度化函数
private static Bitmap PGray(Bitmap src)
{
int w = src.Width;
int h = src.Height;
//构建与原图像大小一样的模版图像
Bitmap dstBitmap = new Bitmap(src.Width, src.Height, System.Drawing.Imaging.PixelFormat.For
本文实例讲述了C#数字图象处理之肤色检测的方法。分享给大家供大家参考。具体如下:
//定义肤色检测函数(可供人脸检测等研究使用)
public Bitmap SkinDetect1(Bitmap a)
{
Rectangle rect = new Rectangle(0, 0, a.Width, a.Height);
System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Drawing.Imaging.I