0

好的,所以我一直在做一个项目,并且遇到了这个问题。运行我的程序时收到此消息:

Unhandled exception at 0x76fa15de in programmingproj.exe: 0xC0000005: Access violation reading location 0x00000000.

这是 Visual Studio 所说的错误代码:

float **LoadImg(const char *filename)
{
    float **data = { 0 };
    char *buf = new char[32];
    std::string buf2;

    std::ifstream filebuf(filename);

    filebuf.getline(buf, 32);

    // Reiterate over each pixel, very inefficient, needs to be fixed.
    for (int x = 0; x < (IMAGE_SIZE_X - 1); x++)
    {
        for (int y = 0; y < (IMAGE_SIZE_Y - 1); y++)
        {
            filebuf.getline(buf, 32);

            // Only copy the values.
            for (int i = 8; i < 32; i++)
            {
                if (buf[i] != '\t' && buf[i] != ' ')
                {
                    buf2 += buf[i];
                }
            }

            // Set the pixel's value.
            data[x][y] = (float)strtodbl(buf2);
        }
    }

    filebuf.close();

    return data;
}

这是我正在尝试阅读的格式示例:

x   y       Value
1   1           0
1   2           0
1   3           0
1   4           0
1   5      10.159
1   6       5.225
1   7       1.337
1   8           0
1   9           0
1   10          0

我只需要将值字段加载到正确的像素(x,y)中。

strtodbl 函数只是我为替换 atof 和/或 strtod 而写的一个快速的东西。

编辑: IMAGE_SIZE_X 和 IMAGE_SIZE_Y 只是图像大小(97x56)的常量。

4

1 回答 1

4

您已声明data为指向指针的指针,并且您正在使用data但您从未分配空间并设置data为指向它。data在尝试读/写应该指向的内容之前,您必须这样做。

于 2013-06-21T17:01:08.523 回答