繁体   English   中英

NullReferenceException,同时检索RGB代码并添加到数组C#

[英]NullReferenceException while retrieving RGB-code & adding to array c#

亲爱的StackOverflow

我正在编写一个算法,从另一个图像(imgInput)创建一个“棋盘图像”(imgOutput),例如示例。

它所做的是一张一张地检查图像的每个像素(500x500像素),然后将图像分成2500盒,每盒10x10像素。 我已经写了算法来计算平均RGB颜色,而不是绘制图像。 这是代码:

    public class PixelMatrix
    {
        public int X;
        public int Y;
        public int R;
        public int G;
        public int B;
    }

    public class RGBMatrix
    {
        public int R;
        public int G;
        public int B;
    }

public Bitmap fncRasterize(Bitmap imgInput)
        {


            Bitmap imgOutput = new Bitmap(imgInput, 500, 500);
            imgOutput.Save("test.bmp");
            PixelMatrix[] arrWindows = new PixelMatrix[2500];
            RGBMatrix[] arrRGB = new RGBMatrix[100];

            Graphics gfx = Graphics.FromImage(imgOutput);


            int WindowCount = 1;
            int PixelCount = 1;

            int WindowX;
            int WindowY;

            int PixelX;
            int PixelY;

            int avrgR = 0;
            int avrgG = 0;
            int avrgB = 0;

            int tempcounter = 0;


            for (WindowY = 1; WindowY <= 50; WindowY++)
            {

                for (WindowX = 1; WindowX <= 50; WindowX++)
                {
                    PixelCount = 1;
                    avrgR = 0;

                    for (PixelY = 1;  PixelY <= 10; PixelY++)
                    {
                        for (PixelX = 1; PixelX <= 10; PixelX++)
                        {
                            MessageBox.Show("R:" + imgOutput.GetPixel(1, 1).R + " G:" + imgOutput.GetPixel(1, 1).G + " B:" +imgOutput.GetPixel(1, 1).B);

                            arrRGB[PixelCount].R = (int)imgOutput.GetPixel((WindowX * 10 - 10 + PixelX), (WindowY * 10 - 10 + PixelY)).R;
                            arrRGB[PixelCount].G = (int)imgOutput.GetPixel((WindowX * 10 - 10 + PixelX), (WindowY * 10 - 10 + PixelY)).G;
                            arrRGB[PixelCount].B = (int)imgOutput.GetPixel((WindowX * 10 - 10 + PixelX), (WindowY * 10 - 10 + PixelY)).B;

                            // This is just to test
                            tempcounter = +tempcounter;
                            lblProgress.Text = tempcounter.ToString();
                        }
                    }

                    for (int tempx = 1; tempx <= 100; tempx++)
                    {
                        avrgR = +arrRGB[tempx].R;
                        avrgG = +arrRGB[tempx].G;
                        avrgB = +arrRGB[tempx].B;
                    }
                    arrWindows[WindowCount].R = (avrgR / 100);
                    arrWindows[WindowCount].G = (avrgG / 100);
                    arrWindows[WindowCount].B = (avrgB / 100);

                    WindowCount = +1;

                }
            }




            return imgOutput;

        }

现在,当算法开始运行时,在此行上出现NullReferenceException错误:

 arrRGB[PixelCount].R = imgOutput.GetPixel(tempR.X, tempR.Y).R;
 arrRGB[PixelCount].G = imgOutput.GetPixel(tempG.X, tempG.Y).G;
 arrRGB[PixelCount].B = imgOutput.GetPixel(tempG.X, tempG.Y).B;

尽管其上方的行(Messagebox语句)完美地返回了RGB值。 有人可以向我解释为什么吗? 这真令人沮丧。

你永远不会创造了RGBMatrix中的对象arrRGB ,所以R GB性能还不存在。 那就是NullReferenceException的来源。

您声明一个具有100个插槽的数组,以包含RGBMatrix类型的元素。
但是您必须创建这些元素中的每个元素,并将实例分配给正确的插槽,然后再尝试访问实例的属性。

for (PixelX = 1; PixelX <= 10; PixelX++)
{
    MessageBox.Show("R:" + imgOutput.GetPixel(1, 1).R + " G:" + imgOutput.GetPixel(1, 1).G + " B:" +imgOutput.GetPixel(1, 1).B);

    arrRGB[PixelCount] = new RBGMatrix();   // This create the instance

    arrRGB[PixelCount].R = (int).....
    arrRGB[PixelCount].G = (int)....
    arrRGB[PixelCount].B = (int)....

    // This is just to test
    tempcounter = +tempcounter;
    lblProgress.Text = tempcounter.ToString();
}

或另一种方式

RGBMatrix mx = new new RBGMatrix();   
mx,R = = (int).....
....
arrRGB[PixelCount] = mx;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM