我已经使用了 LockBits 和 UnlockBits 函数并将图像的字节数组转换为一维数组。(仅考虑黑白/二值化图像)
有没有办法把它带到一个二维数组(大小图像高度和宽度)?所以我可以将数组写入“.txt”文件并查看它?
我用来将图像转换为一维数组的代码如下:
Public void function(Bitmap image){
{
byte[] arr1D;
byte[] arr2D;
BitmapData data = image.LockBits(new Rectangle(0, 0, img_w, img_h), ImageLockMode.ReadOnly, image.PixelFormat);
try
{
IntPtr ptr = data.Scan0;
int bytes = Math.Abs(data.Stride) * image.Height;
byte[] rgbValues = new byte[bytes];
arr1D = rgbValues;
Marshal.Copy(ptr, rgbValues, 0, bytes);
}
finally
{
image.UnlockBits(data);
}
}
由于图像是二进制的,字节数组的值仅来自 255 和 0。
除了将整个图像提取到一维数组之外,是否有任何方法/代码可以将像素逐行提取到二维数组中,我可以将其写入文本文件并稍后查看?
编程语言:C#
示例:(如果将值 255 替换为 1)
结果输出: 一维数组:(6px X 6px 图像)
0 0 1 1 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 1 1 0 0
预期输出: 二维数组:(6px X 6px 图像)
0 0 1 1 0 0
0 0 1 1 0 0
1 1 1 1 1 1
1 1 1 1 1 1
0 0 1 1 0 0
0 0 1 1 0 0
有人可以帮我编写 C# 中的代码吗?