OpenCV中使用calcHist的运行时错误(C ++)

时间:2014-03-21 01:38:59

标签: c++ opencv histogram mat

关于OpenCV中的calcHist,这里有很多问题,但我找不到我的问题的答案,并且多次阅读文档,所以希望有人能用以下代码发现我的问题:

//the setup is that I've got a 1x993 cv::Mat called bestLabels that contains cluster 
//labels for 993 features each belonging to 1 of 40 different clusters. I'm just trying 
//to histogram these into hist. 

cv::Mat hist;
int nbins = 40; 
int hsize[] = { nbins }; 
float range[] = { 0, 39 };
const float *ranges[] = { range };
int chnls[] = { 0 };   
cv::calcHist(&bestLabels, 1, chnls, cv::Mat(), hist, 1, hsize, ranges);

这个编译,但是当我运行它时,我收到一个错误:

OpenCV Error: Unsupported format or combination of formats () in cv::calcHist

这很难让它首先编译,但现在我真的不确定我错过了什么。求救!

或者,我曾试图遍历bestLabels的元素,只是增加一个存储我的直方图的数组中的值,但使用bestLabels.at(0,i)也没有工作。必须有一种更简单的方法从cv :: Mat对象中提取单个元素。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

bestLabels的类型是什么?

我可以使用CV_32S重现您的错误,但它可以与CV_8U或CV_32F一起使用。

也许最简单的方法是将其转换为uchar:

bestLabels.convertTo( bestLabels, CV_8U ); // CV_32F for float, might be overkill here

此外,还有一本手册'直方图计算并不难:

Mat bestLabels(1,933,CV_32S); // assuming 'int' here again

Mat hist(1,40,CV_8U,Scalar(0));

for ( int i=0; i<bestLabels.cols; i++ ) 
    hist[ bestLabels.at<int>(0,i) ] ++;