gpt4 book ai didi

image-processing - 如何在opencv中找到图像的最大和最小亮度值?

转载 作者:太空宇宙 更新时间:2023-11-03 22:06:33 24 4
gpt4 key购买 nike

我需要计算图像的动态范围。所以我需要计算图像的最大和最小亮度值。我需要使用 opencv 来执行此操作。知道如何在 opencv 中执行此操作吗?

最佳答案

这可能有帮助:

 // find minimum intensity and location of minimum intensiy
void min_Loc(Mat* img, Point* minloc, double* minVal)
{
Mat dst2gray;
double maxVal;
Point maxloc;
cvtColor(*img, *img, CV_RGB2GRAY);
minMaxLoc(*img, minVal, &maxVal,minloc,&maxloc); //find minimum and maximum intensities and their positions

}

关于image-processing - 如何在opencv中找到图像的最大和最小亮度值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14724047/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com