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