我试图找到一个最大的像素值的 cv::Mat
.
问题: *maxValue
总是返回 0
.
从 这条线我明白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
.
你应该使用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;