出于某种原因,由于QImage::pixel: coordinate (75,3039) out of range
,我无法运行我的代码。但是我不知道我该怎么办才能修复这个bug,我试图在网上搜索失败。
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
int height;
int width;
unsigned char *p, *p_begin;
QImage img("C:\\Users\\Owner\\Pictures\\2013-09-26\\IMG_0836.JPG");
height = img.height();
width = img.width();
p = (unsigned char *)malloc(height * width * sizeof(unsigned char));
p_begin = p;
for (int row = 1; row < 2000 + 1; ++row)
for (int col = 1; col < 2000 + 1; ++col)
{
QColor clrCurrent( img.pixel( row, col ));
*p = (unsigned char)((clrCurrent.green() * 0.587) + (clrCurrent.blue() * 0.114) + (clrCurrent.red() * 0.299));
p++;
}
}
答案 0 :(得分:0)
查看源代码:
Qt 4.x:link
if (!d || x < 0 || x >= d->width || y < 0 || y >= height()) {
qWarning("QImage::pixel: coordinate (%d,%d) out of range", x, y);
return 12345;
}
Qt 5.x:link
if (!d || x < 0 || x >= d->width || y < 0 || y >= d->height) {
qWarning("QImage::pixel: coordinate (%d,%d) out of range", x, y);
return 12345;
}
在这两种情况下,d
为空也是您所看到的消息的原因。这样,在操作图像之前检查if (!img.isNull())
。我不确定在Windows上的文件路径中转义-
短划线的规则是什么,但它是在您的图像中没有被打开和加载的有效的破折号,或者路径是错在其他地方检查硬盘驱动器上是否存在图像。