本文介绍了查找 cv::Mat 的最大值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试查找 cv::Mat
的最大像素值.
I am trying to find the maximum pixel value of a cv::Mat
.
问题:*maxValue
总是返回 0
.
来自 这个 S.O.线程,我知道 'max_element
返回迭代器,而不是值.这就是我使用 *maxValue
'
From this S.O. thread, I understand that 'max_element
return iterators, not values. This is why I use *maxValue
'
cv::Mat imageMatrix;
double sigmaX = 0.0;
int ddepth = CV_16S; // ddepth – The desired depth of the destination image
cv::GaussianBlur( [self cvMatFromUIImage:imageToProcess], imageMatrix, cv::Size(3,3), sigmaX);
cv::Laplacian(imageMatrix, imageMatrix, ddepth, 1);
std::max_element(imageMatrix.begin(),imageMatrix.end());
std::cout << "The maximum value is : " << *maxValue << std::endl;
注意:如果用 min_element
代替 max_element
,用 minValue
代替 maxValue
,*minValue
将始终返回 0
.
Note : If min_element
is substituted in place of max_element
, and minValue
in place of maxValue
, *minValue
will always return 0
.
推荐答案
你应该使用 OpenCV 内置函数 minMaxLoc
而不是 std
函数.
You should use the OpenCV built-in function minMaxLoc
instead of std
function.
Mat m;
//Initialize m
double minVal;
double maxVal;
Point minLoc;
Point maxLoc;
minMaxLoc( m, &minVal, &maxVal, &minLoc, &maxLoc );
cout << "min val: " << minVal << endl;
cout << "max val: " << maxVal << endl;
这篇关于查找 cv::Mat 的最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!