이 프로그램에서는 Pillow 라이브러리를 사용하여 각 채널의 모든 픽셀의 분산을 계산합니다. 이미지에는 총 3개의 채널이 있으므로 3개의 값 목록이 표시됩니다.
원본 이미지
알고리즘
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 variance of the pixels.
예시 코드
from PIL import Image, ImageStat im = Image.open('image_test.jpg') stat = ImageStat.Stat(im) print(stat.var)
출력
[5221.066590958682, 4388.697801428673, 4291.257706548981]