इस कार्यक्रम में, हम पिलो लाइब्रेरी का उपयोग करके प्रत्येक चैनल में सभी पिक्सेल के मानक विचलन की गणना करेंगे। एक इमेज में कुल 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]