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 的最大值
基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
