我正在尝试找到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_element
而minValue
代替maxValue
,则*minValue
将始终返回0
答案 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;