Aforge中的treshould过滤器似乎无法正常工作

时间:2014-12-05 04:58:46

标签: c# aforge threshold

希望你们都做得很好。我确实使用Aforge库在C#中编写了一些代码。我想裁剪从网络摄像头捕获的主图像,以获得良好的投资回报率。当我使用阈值0时,一切都应该是白色像素(总共可以说是26880像素),但似乎我的裁剪图像中有一些黑色像素(578像素)。任何可能导致它的想法?当我没有裁剪我的图像时,一切都很好。

            Bitmap img = (Bitmap)eventArgs.Frame.Clone(); 
            Bitmap bmp = new Bitmap(x2box, y2box); 
            bmp = img.Clone(new Rectangle(x1box, y1box, x2box, y2box), eventArgs.Frame.PixelFormat); 
            Grayscale filter = new Grayscale(0.2125, 0.7154, 0.0721); 
            Bitmap img1 = filter.Apply(bmp);
            Threshold tresh = new Threshold((int)tresh1);      // tresh1 is 0-255 but is set to zero here
            tresh.ApplyInPlace(img1);   
            int iterator = 1; int xrow = 0;      // here i use these constant to calculate location of the pixels
            byte[] arraybyte = BitmapToByteArray(img1);      
            for (int i = 0; i < arraybyte.Length; i++)
            {
                if (i - iterator * img1.Width == 0)
                {
                    xrow++;
                    iterator++;
                }
                if (arraybyte[i] == 0) // if pixel is black
                {
                    X_val.Add(i - xrow * img1.Width);
                    Y_val.Add(iterator);
                }
            }

            for (int i = 0; i < X_val.Count; i++)
            {
                YAve += Y_val[i];
                XAve += X_val[i];
            }
            MessageBox.Show(X_val.Count.ToString()); // shows non-zero value!

BitmapToByteArray方法如下:

 public static byte[] BitmapToByteArray(Bitmap bitmap)
    {

        BitmapData bmpdata = bitmap.LockBits(new Rectangle(0, 0, bitmap.Width, bitmap.Height), ImageLockMode.ReadOnly, bitmap.PixelFormat);
        int numbytes = bmpdata.Stride * bitmap.Height;
        byte[] bytedata = new byte[numbytes];
        IntPtr ptr = bmpdata.Scan0;
        Marshal.Copy(ptr, bytedata, 0, numbytes);
        bitmap.UnlockBits(bmpdata);
        return bytedata;

    }

1 个答案:

答案 0 :(得分:1)

Bitmap的每一行的字节数将强制为4的倍数。如果roi width * bytes per pixel不是4的倍数,则每行的末尾都会有填充字节。

它们不会被阈值化,因为它们实际上不是Bitmap的一部分,因此它们的值可能为0.您的BitmapToByteArray方法可能不是填充感知并且每个字节都读取。