C++ Opencv图像直方图

Mat image = imread("D:/ju.jpg");
    imshow("素材图", image);
    int bins = 256;    //直条为256
    int hist_size[] = { bins };
    float range[] = { 0,256 };
    const float* ranges[] = { range };

    MatND redHist, greenHist, blueHist;
    //MAT数据为BGR
    int channels_r[] = { 2 }; //r通道
    calcHist(&image, 1, channels_r, Mat(), redHist, 1, hist_size, ranges, true, false);
    int channels_g[] = { 1 };
    calcHist(&image, 1, channels_g, Mat(), greenHist, 1, hist_size, ranges, true, false);
    int channels_b[] = { 0 };
    calcHist(&image, 1, channels_b, Mat(), blueHist, 1, hist_size, ranges, true, false);

    //准备参数绘制三色直方图
    double maxValue_red, maxValue_green, maxValue_blue;
    minMaxLoc(redHist, 0, &maxValue_red, 0, 0);
    minMaxLoc(greenHist, 0, &maxValue_green, 0, 0);
    minMaxLoc(blueHist, 0, &maxValue_blue, 0, 0);

    int scale = 1;
    int histHeight = 256;
    //bins * 3 是因为要绘制三个通道,每个通道的像素取值在 0-bins
    Mat histImage = Mat::zeros(histHeight, bins * 3, CV_8UC3);

    //开始绘制
    for (int i = 0; i < bins; i++) {
        float binValue_red = redHist.at<float>(i);
        float binValue_green = greenHist.at<float>(i);
        float binValue_blue = blueHist.at<float>(i);

        //计算高度时的乘除与下面绘图的 histHeight - intensity 是为了便于显示,否则有的色度很低
        //要绘制的高度
        int intensity_red = cvRound(binValue_red * histHeight / maxValue_red);
        int intensity_green = cvRound(binValue_green * histHeight / maxValue_green);
        int intensity_blue = cvRound(binValue_blue * histHeight / maxValue_blue);
        rectangle(histImage, Point(i * scale, histHeight - 1),
            Point((i + 1) * scale - 1, histHeight - intensity_red),
            Scalar(255, 0, 0));
        rectangle(histImage, Point((i + bins) * scale, histHeight - 1),
            Point((i + bins + 1) * scale - 1, histHeight - intensity_green),
            Scalar(0, 255, 0));
        rectangle(histImage, Point((i + bins * 2) * scale, histHeight - 1),
            Point((i + bins * 2 + 1) * scale - 1, histHeight - intensity_blue),
            Scalar(0, 0, 255));
    }

    imshow("图像的 RGB 直方图", histImage);

效果如下:

C++ Opencv图像直方图
原文链接: https://www.cnblogs.com/zebra-bin/p/13745130.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/203415

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月12日 下午9:29
下一篇 2023年2月12日 下午9:29

相关推荐