opencv calcHist在使用cvtColor后返回黑色直方图

时间:2018-02-02 06:23:32

标签: c++ opencv histogram

我在“OpenCV 2计算机视觉应用程序设计手册”第04章中运行了一个例子。通过calcHist返回的只有2个直方图是黑色的,并且遵循源。运行结果如下所示。

ColorHistogram() {

    // Prepare arguments for a color histogram
    histSize[0]= histSize[1]= histSize[2]= 256;
    hranges[0]= 0.0;    // BRG range
    hranges[1]= 255.0;
    ranges[0]= hranges; // all channels have the same range
    ranges[1]= hranges;
    ranges[2]= hranges;
    channels[0]= 0;     // the three channels
    channels[1]= 1;
    channels[2]= 2;
}

...

// Computes the 2D ab histogram.
// BGR source image is converted to Lab
cv::MatND getabHistogram(const cv::Mat &image) {

    cv::MatND hist;

    // Convert to Lab color space
    cv::Mat lab;
    cv::cvtColor(image,lab,CV_BGR2Lab);

    // Prepare arguments for a 2D color histogram
    hranges[0]= -128.0;
    hranges[1]= 127.0;
    channels[0]= 1; // the two channels used are ab
    channels[1]= 2;

    // Compute histogram
    cv::calcHist(&lab,
        1,          // histogram of 1 image only
        channels,   // the channel used
        cv::Mat(),  // no mask is used
        hist,       // the resulting histogram
        2,          // it is a 2D histogram
        histSize,   // number of bins
        ranges      // pixel value range
    );

    return hist;
}

错误在哪里?我想不明白。将图像转换为Lab格式时,cvtColor(...)函数是否会出错?

enter image description here

1 个答案:

答案 0 :(得分:2)

代码有错误。您正在为通道分配随机值。 将范围更改为calchist()中的hranges。 试试这个:

cv::MatND getabHistogram(const cv::Mat &image) {

cv::MatND hist;

// Convert to Lab color space
cv::Mat lab;
cv::cvtColor(image,lab,CV_BGR2Lab);

// Prepare arguments for a 2D color histogram
hranges[0]= -128.0;
hranges[1]= 127.0;
channels[0]= 1; // the two channels used are ab
channels[1]= 2;

// Compute histogram
cv::calcHist(&lab,
    1,          // histogram of 1 image only
    channels,   // the channel used
    cv::Mat(),  // no mask is used
    hist,       // the resulting histogram
    2,          // it is a 2D histogram
    histSize,   // number of bins
    hranges      // pixel value range
);

return hist;

}