ในโปรแกรมนี้ เราจะคำนวณความแปรปรวนของพิกเซลทั้งหมดในแต่ละช่องโดยใช้ไลบรารี่ 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 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]