将 cv::mat 转换为 QImage
Posted
技术标签:
【中文标题】将 cv::mat 转换为 QImage【英文标题】:Converting cv::mat to QImage 【发布时间】:2018-10-01 00:54:33 【问题描述】:正如标题所说,我正在尝试。我正在做的是在垫子上使用 equalizeHist() 函数,然后将其转换为 QImage 以显示在 Qt 的小部件窗口中。我知道垫子可以正常工作并正确加载图像,因为均衡后的图像将使用 imshow() 显示在新窗口中,但是当将此垫子转换为 QImage 时,我无法将其显示在窗口中。我相信问题在于从垫子到 QImage 的转换,但找不到问题。下面是我的代码 sn-p 的一部分。
Mat image2= imread(directoryImage1.toStdString(),0);
//cv::cvtColor(image2,image2,COLOR_BGR2GRAY);
Mat histEquImg;
equalizeHist(image2,histEquImg);
imshow("Histogram Equalized Image 2", histEquImg);
//QImage img=QImage((uchar*) histEquImg.data, histEquImg.cols, histEquImg.rows, histEquImg.step, QImage::Format_ARGB32);
imageObject= new QImage((uchar*) histEquImg.data, histEquImg.cols, histEquImg.rows, histEquImg.step, QImage::Format_RGB888);
image = QPixmap::fromImage(*imageObject);
scene=new QGraphicsScene(this); //create a frame for image 2
scene->addPixmap(image); //put image 1 inside of the frame
ui->graphicsView_4->setScene(scene); //put the frame, which contains image 3, to the GUI
ui->graphicsView_4->fitInView(scene->sceneRect(),Qt::KeepAspectRatio); //keep the dimension ratio of image 3
没有错误发生,程序不会崩溃。 提前致谢。
【问题讨论】:
编辑:尝试在 cv::cvtColor 中添加回来以更改输出直方图图像。还是什么都没有 【参考方案1】:您的问题是 QImage 到 cv::Mat
的转换,当在 cv::imread
中使用标志 0 时,意味着读数是灰度的,并且您正在使用格式为 QImage::Format_RGB88
8 的转换。我使用以下函数将cv::Mat
转换为QImage
:
static QImage MatToQImage(const cv::Mat& mat)
// 8-bits unsigned, NO. OF CHANNELS=1
if(mat.type()==CV_8UC1)
// Set the color table (used to translate colour indexes to qRgb values)
QVector<QRgb> colorTable;
for (int i=0; i<256; i++)
colorTable.push_back(qRgb(i,i,i));
// Copy input Mat
const uchar *qImageBuffer = (const uchar*)mat.data;
// Create QImage with same dimensions as input Mat
QImage img(qImageBuffer, mat.cols, mat.rows, mat.step, QImage::Format_Indexed8);
img.setColorTable(colorTable);
return img;
// 8-bits unsigned, NO. OF CHANNELS=3
if(mat.type()==CV_8UC3)
// Copy input Mat
const uchar *qImageBuffer = (const uchar*)mat.data;
// Create QImage with same dimensions as input Mat
QImage img(qImageBuffer, mat.cols, mat.rows, mat.step, QImage::Format_RGB888);
return img.rgbSwapped();
return QImage();
在那之后,我发现您在评论时对 QGraphicsView
和 QGraphicsScene
的工作方式有误解:将包含图像 3 的框架放入 GUI,使用 ui->graphicsView_4->setScene(scene);
你是不是设置框架而是设置场景,场景只设置一次,最好在构造函数中设置。
// constructor
scene = new QGraphicsScene(this);
ui->graphicsView->setScene(scene);
所以当你想加载图像时,只需使用场景:
cv::Mat image= cv::imread(filename.toStdString(), CV_LOAD_IMAGE_GRAYSCALE);
cv::Mat histEquImg;
equalizeHist(image, histEquImg);
QImage qimage = MatToQImage(histEquImg);
QPixmap pixmap = QPixmap::fromImage(qimage);
scene->addPixmap(pixmap);
ui->graphicsView->fitInView(scene->sceneRect(), Qt::KeepAspectRatio);
完整的例子可以在下面的link找到。
【讨论】:
效果很好,谢谢!第一次使用 Qt,所以我还有很多东西要学。以上是关于将 cv::mat 转换为 QImage的主要内容,如果未能解决你的问题,请参考以下文章
Convert between cv::Mat and QImage 两种图片类转换