如何分离图像中的像素并将它们放入C#数组中

本文关键字:数组 何分离 分离 图像 像素 | 更新日期: 2023-09-27 18:24:58

我想导入照片并检查每个像素以确定其RGB值然后将每个像素(或其在RGB中的等效值)放入阵列或类似的数据结构中,以保持像素的原始顺序。

我需要知道的最重要的事情是如何分离像素并确定每个像素值。

如何分离图像中的像素并将它们放入C#数组中

        Bitmap img = (Bitmap)Image.FromFile(@"C:'...");
        Color[,] pixels = new Color[img.Width, img.Height];
        for (int x = 0; x < img.Width; x++)
        {
            for (int y = 0; y < img.Height; y++)
            {
                pixels[x, y] = img.GetPixel(x, y);
            }
        }

快速版本的投票支持答案:

    public static int[][] ImageToArray(Bitmap bmp) {
        int height = bmp.Height;   // Slow properties, read them once
        int width = bmp.Width;
        var arr = new int[height][];
        var data = bmp.LockBits(new Rectangle(0, 0, width, height), 
                   System.Drawing.Imaging.ImageLockMode.ReadOnly, 
                   System.Drawing.Imaging.PixelFormat.Format32bppArgb);
        try {
            for (int y = 0; y < height; ++y) {
                arr[y] = new int[width];
                System.Runtime.InteropServices.Marshal.Copy(
                    (IntPtr)((long)data.Scan0 + (height-1-y) * data.Stride),
                    arr[y], 0, width);
            }
        }
        finally {
            bmp.UnlockBits(data);
        }
        return arr;
    }

使用Color.FromArgb()将像素值映射到Color。