查找cv::Mat的最大值。

问题描述 投票:19回答:1

我试图找到一个最大的像素值的 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_elementminValue 代替 maxValue, *minValue 归根结底 0.

c++ pointers opencv iterator computer-vision
1个回答
40
投票

你应该使用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;
© www.soinside.com 2019 - 2024. All rights reserved.