34

我试图找到 a 的最大像素值cv::Mat

问题:*maxValue总是返回0

这个 SO 线程中,我了解到'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

4

1 回答 1

61

您应该使用 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;
于 2013-04-11T18:25:08.707 回答