好吧,所以我一直在研究一个项目,并且已经解决了这个问题。我在运行程序时收到此消息:
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)。
答案 0 :(得分:4)
您已将data
声明为指针指针,并且您正在使用data
,但您从未分配空间并设置data
指向它。在尝试读/写data
应该指向的内容之前,您必须这样做。