热图通过OpenCV表示

时间:2013-04-22 10:14:06

标签: c++ visual-studio-2010 opencv

根据一些研究,热图数据无法通过OpenCV完成。还有一些其他的彩色地图(HSV,喷气式......),但不是我正在寻找的那个。 你建议展示一些东西吗?

2 个答案:

答案 0 :(得分:4)

您可以显示如下的热图:

cv::Mat heatmap = getHeatMap(grayscaleImage); // create your heat map from a grayscale image (CV_8UC1)
cv::imshow("Heat Map", heatmap); // display your heat map
waitkey(0); // make sure the application does not close immediately 

getHeatMap()看起来像这样(未经测试):

cv::Mat getHeatMap(cv::Mat input) // input is of type CV_8UC1, return is of type CV_8UC3
{
    cv::Mat result(input.rows, input.cols, CV_8UC3);
    for (int yy = 0; yy < input.rows; ++yy)
    {
        for (int xx = 0; xx < input.cols; ++xx)
        {
            int pixelValue = input.at<uchar>(yy, xx);
            if (pixelValue < 128) {
                result.at<cv::Vec3b>(yy, xx) = cv::Vec3b(0, 0 + 2*pixelValue, 255 - 2 * pixelValue);
            } else {
                result.at<cv::Vec3b>(yy, xx) = cv::Vec3b(0 + 2*pixelValue, 255 - 2 * pixelValue, 0);
            }
        }
    }
    return result;
}

答案 1 :(得分:2)

结帐cv::applyColorMap(InputArray src, OutputArray dst, int colormap),它至少在OpenCV 2.4之后可用。

以下是this website的最小示例:

using namespace cv; 

Mat im_gray = imread("pluto.jpg", IMREAD_GRAYSCALE);
Mat im_color;
applyColorMap(im_gray, im_color, COLORMAP_JET);