Hi I'm trying to use PIL to get data from an image and find 'unusual' RBG values but haven't found the right way.
Import Image, PIL
im=Image.open("image.bmp")
ans=im.getdata()
print ans
This doesn't examine the RGB values for me to find any unusual ones. If tried others like:
im.load()
im.getpixels()
im.getbands()
but haven't found the right one yet.