6

我正在尝试使用锁定位来增加我的图像检测类,但这会导致代码出现问题,因此它无法运行。我怎样才能同时使用 lockbits 和 getpixel 以加快图像检测速度,或者有人可以告诉我一个同样快的替代方案吗?

代码:

static IntPtr Iptr = IntPtr.Zero;
    static BitmapData bitmapData = null;
    static public byte[] Pixels { get; set; }
    static public int Depth { get; private set; }
    static public int Width { get; private set; }
    static public int Height { get; private set; }

    static public void LockBits(Bitmap source)

    {
            // Get width and height of bitmap
            Width = source.Width;
            Height = source.Height;

            // get total locked pixels count
            int PixelCount = Width * Height;

            // Create rectangle to lock
            Rectangle rect = new Rectangle(0, 0, Width, Height);

            // get source bitmap pixel format size
            Depth = System.Drawing.Bitmap.GetPixelFormatSize(source.PixelFormat);


            // Lock bitmap and return bitmap data
            bitmapData = source.LockBits(rect, ImageLockMode.ReadWrite,
                                         source.PixelFormat);

            // create byte array to copy pixel values
            int step = Depth / 8;
            Pixels = new byte[PixelCount * step];
            Iptr = bitmapData.Scan0;

            // Copy data from pointer to array
            Marshal.Copy(Iptr, Pixels, 0, Pixels.Length);

    }


     static public bool SimilarColors(int R1, int G1, int B1, int R2, int G2, int B2, int Tolerance)
    {
        bool returnValue = true;
        if (Math.Abs(R1 - R2) > Tolerance || Math.Abs(G1 - G2) > Tolerance || Math.Abs(B1 - B2) > Tolerance)
        {
            returnValue = false;
        }
        return returnValue;
    }


     public bool findImage(Bitmap small, Bitmap large, out Point location)
     {
         unsafe
         {
             LockBits(small);
             LockBits(large);
             //Loop through large images width
             for (int largeX = 0; largeX < large.Width; largeX++)
             {
                 //And height
                 for (int largeY = 0; largeY < large.Height; largeY++)
                 {
                     //Loop through the small width
                     for (int smallX = 0; smallX < small.Width; smallX++)
                     {
                         //And height
                         for (int smallY = 0; smallY < small.Height; smallY++)
                         {
                             //Get current pixels for both image
                             Color currentSmall = small.GetPixel(smallX, smallY);
                             Color currentLarge = large.GetPixel(largeX + smallX, largeY + smallY);
                             //If they dont match (i.e. the image is not there)

                             if (!colorsMatch(currentSmall, currentLarge))
                                 //Goto the next pixel in the large image

                                 goto nextLoop;
                         }
                     }
                     //If all the pixels match up, then return true and change Point location to the top left co-ordinates where it was found
                     location = new Point(largeX, largeY);
                     return true;
                 //Go to next pixel on large image
                 nextLoop:
                     continue;
                 }
             }
             //Return false if image is not found, and set an empty point
             location = Point.Empty;
             return false;
         }
     }
4

2 回答 2

7

您不想依赖 getPixel() 进行图像处理;偶尔调用来获取点值是可以的(例如,在鼠标悬停时),但一般来说,最好在图像内存或某些二维数组中进行图像处理,必要时可以将其转换为位图。

首先,您可以尝试编写一个使用 LockBits/UnlockBits 来提取便于操作的数组的方法。完成对数组的操作后,可以使用不同的 LockBits/UnlockBits 函数将其写回位图。

这是我过去使用的一些示例代码。第一个函数从位图中返回一维值数组。由于您知道位图的宽度,因此可以将此一维数组转换为二维数组以进行进一步处理。完成处理后,您可以调用第二个函数将(修改后的)一维数组再次转换为位图。

public static byte[] Array1DFromBitmap(Bitmap bmp){
    if (bmp == null) throw new NullReferenceException("Bitmap is null");

    Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);
    BitmapData data = bmp.LockBits(rect, ImageLockMode.ReadWrite, bmp.PixelFormat);
    IntPtr ptr = data.Scan0;

    //declare an array to hold the bytes of the bitmap
    int numBytes = data.Stride * bmp.Height;
    byte[] bytes = new byte[numBytes];

    //copy the RGB values into the array
    System.Runtime.InteropServices.Marshal.Copy(ptr, bytes, 0, numBytes);

    bmp.UnlockBits(data);

    return bytes;           
}

public static Bitmap BitmapFromArray1D(byte[] bytes, int width, int height)
{
    Bitmap grayBmp = new Bitmap(width, height, PixelFormat.Format8bppIndexed);
    Rectangle grayRect = new Rectangle(0, 0, grayBmp.Width, grayBmp.Height);
    BitmapData grayData = grayBmp.LockBits(grayRect, ImageLockMode.ReadWrite, grayBmp.PixelFormat);
    IntPtr grayPtr = grayData.Scan0;

    int grayBytes = grayData.Stride * grayBmp.Height;
    ColorPalette pal = grayBmp.Palette;

    for (int g = 0; g < 256; g++){
        pal.Entries[g] = Color.FromArgb(g, g, g);
    }

    grayBmp.Palette = pal;

    System.Runtime.InteropServices.Marshal.Copy(bytes, 0, grayPtr, grayBytes);

    grayBmp.UnlockBits(grayData);
    return grayBmp;
}

这些方法对 Bitmap 像素格式做了一些假设,可能对您不起作用,但我希望总体思路很清楚:使用 LockBits/UnlockBits 从 Bitmap 中提取字节数组,以便您可以最轻松地编写和调试算法,并且然后再次使用 LockBits/UnlockBits 将数组再次写入位图。

为了可移植性,我建议您的方法返回所需的数据类型,而不是在方法本身中操作全局变量。

如果您一直在使用 getPixel(),那么如上所述在数组之间进行转换可以大大加快您的代码速度,而只需少量的编码工作投资。

于 2012-09-21T00:26:23.600 回答
2

好的,从哪里开始。更好地理解你在用 lockBits 做什么。首先确保不要用它覆盖你的字节数组。

LockBits(small);              
LockBits(large);

由于第二次通话,所有第一次通话都会锁定您的图像,这并不好,因为您不会再次解锁它。所以添加另一个代表图像的字节数组。你可以做这样的事情

LockBits(small, true);              
LockBits(large, false);

并更改您的 Lockbits 方法

static public void LockBits(Bitmap source, bool flag)                        
{   
...
Marshal.Copy(Iptr, Pixels, 0, Pixels.Length);

if(flag)
   PixelsSmall=Pixels;
else
   PixelsLarge=Pixels;
}

其中 PixelsLarge 和 PixelsSmall 是全局变量,而 Pixels 不是那些 2 包含您的图像。现在你必须比较它。现在您必须比较每个“字节集”,因此您必须知道 Pixelformat。是 32b/pix 24 还是只有 8 个(ARGB、RGB、灰度)让我们拍摄 ARGB 图像。在这种情况下,一组将由 4 个字节(=32/8)组成,我不确定顺序,但我认为一组的顺序是 ABGR 或 BGRA。

希望这可以帮助你。如果您不知道如何比较正确的像素,请再次询问。啊,别忘了使用 UnlockBits 命令。

于 2012-08-29T06:59:34.127 回答