Find maximum value of a cv::Mat(查找 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 的最大值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查找 cv::Mat 的最大值


- DoEvents 等效于 C++? 2021-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 如何提取 __VA_ARGS__? 2022-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- XML Schema 到 C++ 类 2022-01-01
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01
- GDB 不显示函数名 2022-01-01
- 将 hdc 内容复制到位图 2022-09-04