ในโปรแกรมนี้ เราจะคำนวณค่าเบี่ยงเบนมาตรฐานของพิกเซลทั้งหมดในแต่ละช่องสัญญาณโดยใช้ไลบรารี่ของ Pillow มีทั้งหมด 3 ช่องในภาพ ดังนั้นเราจะได้รายการค่าสามค่า
ภาพต้นฉบับ
อัลกอริทึม
Step 1: Import 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 standard deviation of the pixels.
โค้ดตัวอย่าง
from PIL import Image, ImageStat im = Image.open('image_test.jpg') stat = ImageStat.Stat(im) print(stat.stddev)
ผลลัพธ์
[72.25694839223894, 66.24724750077299, 65.50769196475312]