如何用cv :: Mat在QwT中表示色彩映射数据?

问题描述 投票:0回答:1

我正在使用Qt和Qwt框架开发c ++应用程序,用于科学图。我将矩阵数据存储为cv::Mat,表示带有标量数据(MxN)的图像,需要将其显示为色彩图。

使用OpenCV,它使用cv::applyColorMap(img,cm_img,cv::COLORMAP_JET)cv::imshow("img name", img)执行,如here所述

我已经尝试将cv::Mat转换为QImage,如herehere所述,但它似乎没有正常工作。当我尝试显示生成的图像时,它没有意义。

从Qwt开始,有些类看起来很有趣:QwtMatrixRasterDataQwtPlotSpectrogramQwtPlotRasterItem

作为最终输出我需要的是这样的。给定一个具有双值的矩阵(MxN),调用像imshow这样的东西,我得到一个像这样的色彩映射图像

c++ qt opencv colormap qwt
1个回答
0
投票

我们来到了使用QCustomPlot,发送它QVector<double>

想法是从QVector创建cv::Mat

QVector<double> cvMatToQVector(const cv::Mat& mat) {
  QVector<double> image;
  auto img_ptr = img.begin<double>();

  for (; img_ptr < img.end(); img_ptr++) {
    image.append(*img_ptr) = element;
  }
  return image;
}

然后我们创建一个QCPColorMap* colorMap并用QVector vec数据填充它:

  for (int yIndex = 0; yIndex < col; ++yIndex) {
    y_col = yIndex * col;
    for (int xIndex = 0; xIndex < row; ++xIndex) {
      z = vec.at(xIndex + y_col);
      colorMap->data()->setCell(xIndex, yIndex, z);
    }
  }
© www.soinside.com 2019 - 2024. All rights reserved.