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