C#图像处理之图像均值方差计算的方法_技术学院_宜昌市隼壹珍商贸有限公司

您好,欢迎访问宜昌市隼壹珍商贸有限公司

400 890 5375
当前位置: 主页 > 新闻动态 > 技术学院

C#图像处理之图像均值方差计算的方法

发布时间:2026-01-18  |  点击率:

本文实例讲述了C#图像处理之图像均值方差计算的方法。分享给大家供大家参考。具体如下:

//本函数均是基于RGB颜色空间计算
//定义图像均值函数(RGB空间)
public double AnBitmap(Bitmap a)
{
  double V = 0;
  Rectangle rect = new Rectangle(0, 0, a.Width, a.Height);
  System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
  unsafe
  {
   byte* pIn = (byte*)bmpData.Scan0.ToPointer();
   byte* P;
   int R, G, B;
   double meanvalue = 0, sum = 0; 
   int stride = bmpData.Stride;
   for (int y = 0; y < a.Height; y++)
   {
     for (int x = 0; x < a.Width; x++)
     {
     P = pIn;
     B = P[0];
     G = P[1];
     R = P[2];
     sum += B * 0.114 + G * 0.587 + R * 0.299;
     pIn += 3;
     }
     pIn += stride - a.Width * 3;
   }
   meanvalue = sum / (a.Width * a.Height);
   V = meanvalue;
  }
  a.UnlockBits(bmpData);
  return V;  //返回图像均值V
}
//定义图像统计方差函数(RGB空间)
public double AnCONBitmap(Bitmap a,double meanvalue)
{
  double V = 0;
  Rectangle rect = new Rectangle(0, 0, a.Width, a.Height);
  System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
  unsafe
  {
   byte* pIn = (byte*)bmpData.Scan0.ToPointer();
   byte* P;
   int R, G, B;
   double conv = 0, sum = 0;
   int stride = bmpData.Stride;
   for (int y = 0; y < a.Height; y++)
   {
     for (int x = 0; x < a.Width; x++)
     {
     P = pIn;
     B = P[0];
     G = P[1];
     R = P[2];
     sum += (B * 0.114 + G * 0.587 + R * 0.299 - meanvalue) * (B * 0.114 + G * 0.587 + R * 0.299 - meanvalue);
     pIn += 3;
     }
     pIn += stride - a.Width * 3;
    }
    conv = sum / (a.Width * a.Height-1);
   V = conv;
  }
  a.UnlockBits(bmpData);
  return V;  //返回图像方差V
}

希望本文所述对大家的C#程序设计有所帮助。

全国统一服务电话

400 890 5375

电子邮箱:879577@qq.com

公司地址:宜昌市西陵区黄河路5号三峡明珠10栋1051室

咨询微信

TEL:13680874598