找到cv :: Mat的最大值

时间:2013-04-11 17:38:02

标签: c++ pointers opencv iterator computer-vision

我正在尝试找到cv::Mat的最大像素值。

问题:*maxValue始终返回0

this S.O. thread开始,我理解'max_element返回迭代器,而不是值。这就是我使用*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_elementminValue代替maxValue,则*minValue将始终返回0

1 个答案:

答案 0 :(得分:36)

您应该使用OpenCV内置函数minMaxLoc而不是std函数。

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;