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
を返します。
minMaxLoc
関数の代わりにOpenCV組み込み関数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;