opencv计算图像均值和方差

opencv计算图像均值和方差:

im = cv2.imread("test/20190701002029-1.bmp", 0)
(mean , stddv) = cv2.meanStdDev(im)
print(mean, stddv)

在这里插入图片描述

你可能感兴趣的:(图像处理,opencv,python)