在 OpenCV (C++) 中使用 calcHist 的运行时错误
Posted
技术标签:
【中文标题】在 OpenCV (C++) 中使用 calcHist 的运行时错误【英文标题】:Runtime error using calcHist in OpenCV (C++) 【发布时间】:2014-03-21 01:38:58 【问题描述】:这里有很多关于 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】: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) ] ++;
【讨论】:
bestLabels 是 cv::Mat 并且来自 kmeans() 函数的输出。您建议的是我之前对 hist 所做的事情(手动计算),但这给我带来了麻烦,原因与我认为的相同,因为我使用的是以上是关于在 OpenCV (C++) 中使用 calcHist 的运行时错误的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 C++ 在 OpenCV 4.2.0 中使用 SIFT? [关闭]
在 C++ 中使用 OpenCv 的 VideoCapture 大小错误
在 OpenCV (C++) 中使用 calcHist 的运行时错误