gpt4 book ai didi

c++ - 在 OpenCV (C++) 中使用 calcHist 时出现运行时错误

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:45:22 26 4
gpt4 key购买 nike

这里有很多关于 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 对象中提取单个元素。

感谢您的帮助。

最佳答案

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) ] ++;

关于c++ - 在 OpenCV (C++) 中使用 calcHist 时出现运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22548633/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com