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

Win8 Metro(C#)数字图像处理--2.57一维最大熵法图像二值化

时间:2018-03-13 11:02:10      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:通过   ram   win   data   cdata   pos   fonts   函数名   term   

原文:Win8 Metro(C#)数字图像处理--2.57一维最大熵法图像二值化



[函数名称]

  一维最大熵法图像二值化WriteableBitmap EntropymaxThSegment(WriteableBitmap src)

[算法说明]

  一维最大熵法图像分割就是利用图像的灰度分布密度函数定义图像的信息熵,通过优化一定的熵

准则得到熵最大时对应的阈值,从而进行图像分割的方法。

  算法过程:

  1,对于一幅灰度图像,灰度范围为[0,L-1],求取图像的最小灰度级min,最大灰度级max

技术分享图片

[函数代码]

       /// <summary>
        /// Entropy max method of image segmention.
        /// </summary>
        /// <param name="src">The source iamge.</param>
        /// <returns></returns>
         public static WriteableBitmap EntropymaxThSegment(WriteableBitmap src) ////一维熵最大法阈值分割
         {
             if (src != null)
             {
                 int w = src.PixelWidth;
                 int h = src.PixelHeight;
                 WriteableBitmap dstImage = new WriteableBitmap(w, h);
                 byte[] temp = src.PixelBuffer.ToArray();
                 byte[] tempMask = (byte[])temp.Clone();
                 //定义灰度图像信息存储变量
                 int[] srcData = new int[w * h];
                 //定义阈值变量
                 int Th = 0;
                 //定义直方图存储变量
                 int[] histogram = new int[256];
                 //定义熵值变量 
                 double Ht = 0.0;
                 double Hl = 0.0;
                 double sigma = 0.0;
                 //定义灰度最值变量
                 int max = 0;
                 int min = 255;
                 //定义临时变量
                 double t = 0.0, pt = 0.0, tempMax = 0.0;
                 int tempV = 0;
                 for (int j = 0; j < h; j++)
                 {
                     for (int i = 0; i < w; i++)
                     {
                         tempV = (int)((double)tempMask[i * 4 + j * w * 4] * 0.114 + (double)tempMask[i * 4 + 1 + j * w * 4] * 0.587 + (double)tempMask[i * 4 + 2 + j * w * 4] * 0.299);
                         srcData[i + j * w] = tempV;
                         histogram[tempV]++;
                         if (tempV > max)
                         {
                             max = tempV;
                         }
                         if (tempV < min)
                         {
                             min = tempV;
                         }
                     }
                 }
                 for (int i = min; i < max; i++)
                 {
                     t = (double)((double)histogram[i] / (double)(w * h));
                     if (t > 0.00000001)
                     {
                         Hl += -t * Math.Log10(t);
                     }
                     else
                         continue;
                 }
                 for (int i = min; i < max; i++)
                 {
                     t = (double)((double)histogram[i] / (double)(w * h));
                     pt += t;
                     if (t > 0.00000001)
                     {
                         Ht += -t * Math.Log10(t);
                         sigma = Math.Log10(pt * (1 - pt)) * Ht / pt + (Hl - Ht) / (1 - pt);
                         if (sigma > tempMax)
                         {
                             tempMax = (int)sigma;
                             Th = i;
                         }
                     }
                     else
                         continue;
                 }
                 for (int j = 0; j < h; j++)
                 {
                     for (int i = 0; i < w; i++)
                     {
                         temp[i * 4 + j * w * 4] = temp[i * 4 + 1 + j * w * 4] = temp[i * 4 + 2 + j * w * 4] = (byte)(srcData[i + j * w] < Th ? 0 : 255);
                     }
                 }
                 Stream sTemp = dstImage.PixelBuffer.AsStream();
                 sTemp.Seek(0, SeekOrigin.Begin);
                 sTemp.Write(temp, 0, w * 4 * h);
                 return dstImage;
             }
             else
             {
                 return null;
             }
         }
技术分享图片

Win8 Metro(C#)数字图像处理--2.57一维最大熵法图像二值化

标签:通过   ram   win   data   cdata   pos   fonts   函数名   term   

原文地址:https://www.cnblogs.com/lonelyxmas/p/8554538.html

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