今天我想尝试一下 C# 图像处理方面的新东西。
Szenario 如下:我有两张黑白图像。现在我想从两个图像中获取所有白色像素 (x,y) 并将它们放入返回图像中。所以最后我的 image3 包含来自 image1 和 image2 的所有白色像素。我正在使用不安全的指针,因为它们更快。
因此,在代码中,我检查 (x,y) 中的 image1 == (x,y) 中的 image2,因为两张图片不太可能在同一位置有一个白色像素
我现在的做法:
private unsafe static Bitmap combine_img(Bitmap img1, Bitmap img2)
{
Bitmap retBitmap = img1;
int width = img1.Width;
int height = img1.Height;
BitmapData image1 = retBitmap.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb);
BitmapData image2 = img2.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format24bppRgb); // here an error
byte* scan1 = (byte*)image1.Scan0.ToPointer();
int stride1 = image1.Stride;
byte* scan2 = (byte*)image2.Scan0.ToPointer();
int stride2 = image2.Stride;
for (int y = 0; y < height; y++)
{
byte* row1 = scan1 + (y * stride1);
byte* row2 = scan2 + (y * stride2);
for (int x = 0; x < width; x++)
{
if (row1[x] == row2[x])
row1[x] = 255;
}
}
img1.UnlockBits(image1);
img2.UnlockBits(image2);
return retBitmap;
}
不幸的是,它在尝试锁定第二张图像时返回错误,说图像已经被锁定!