我试图找到 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
。