使用 Pillow 库计算图像中每个波段中所有像素的均值
在本程序中,我们将使用 Pillow 库来计算每个通道中所有像素的均值。图像中总共有三个通道,因此,我们将得到一个由三个值组成的列表。
原始图像
算法
Step 1: Import the Image and ImageStat libraries. Step 2: Open the image. Step 3: Pass the image to the stat function of the imagestat class. Step 4: Print the mean of the pixels.
示例代码
from PIL import Image, ImageStat im = Image.open('image_test.jpg') stat = ImageStat.Stat(im) print(stat.mean)
输出
[76.00257724463832, 69.6674300254453, 64.38017448200654]
广告