QImage::pixel:坐标(75,3039)超出范围
QImage::pixel: coordinate (75,3039) out of range
由于某些原因,由于 QImage::pixel: coordinate (75,3039) out of range
,我无法 运行 我的代码。但是我不知道我应该怎么做才能修复这个错误,我试图在网上搜索没有成功。
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++;
}
}
查看源代码:
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 上的文件路径中转义 -
破折号的规则是什么,但它要么是你的图像中的破折号没有被打开和加载,要么是路径在其他地方是错误的.检查硬盘上是否存在镜像。
由于某些原因,由于 QImage::pixel: coordinate (75,3039) out of range
,我无法 运行 我的代码。但是我不知道我应该怎么做才能修复这个错误,我试图在网上搜索没有成功。
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++;
}
}
查看源代码:
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 上的文件路径中转义 -
破折号的规则是什么,但它要么是你的图像中的破折号没有被打开和加载,要么是路径在其他地方是错误的.检查硬盘上是否存在镜像。