我正在使用(如何将 opencv cv::Mat 转换为 qimagecv::Mat
)中建议的代码在我的 Qt 应用程序中显示 a 。但是,我得到了奇怪的结果。黑色部分显示为黑色,但所有其他值都被反转。
转换代码:
QImage ImgConvert::matToQImage(Mat_<double> src)
{
double scale = 255.0;
QImage dest(src.cols, src.rows, QImage::Format_ARGB32);
for (int y = 0; y < src.rows; ++y) {
const double *srcrow = src[y];
QRgb *destrow = (QRgb*)dest.scanLine(y);
for (int x = 0; x < src.cols; ++x) {
unsigned int color = srcrow[x] * scale;
destrow[x] = qRgba(color, color, color, 255);
}
}
return dest;
}
显示代码:
void MainWindow::redraw()
{
static QImage image = ImgConvert::matToQImage(im);
static QGraphicsPixmapItem item( QPixmap::fromImage(image));
static QGraphicsScene* scene = new QGraphicsScene;
scene->addItem(&item);
ui->graphicsView->setScene(scene);
ui->graphicsView->repaint();
}
现在我正在使用if(color>0) color = 255-color;
来纠正这种效果,但我更愿意了解它的来源。
另外,第二个小问题:如果我删除 中的static
声明redraw()
,当方法退出时,图像会立即从内存中删除。这是解决此问题的最佳方法吗?如果我显示多个帧,是否会产生任何意外的副作用?