इस कार्यक्रम में, हम पिलो लाइब्रेरी का उपयोग करके प्रत्येक चैनल में सभी पिक्सेल के माध्यिका की गणना करेंगे। एक इमेज में कुल 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 median of the pixels.
उदाहरण कोड
from PIL import Image, ImageStat im = Image.open('image_test.jpg') stat = ImageStat.Stat(im) print(stat.median)
आउटपुट
[41, 43, 40]