I am getting this list as an output [268541.0, 264014.0, 324155.0]
Actually in my code i am finding difference between two images and i need to count the number of pixels which appear as a difference of these two images. These values i m getting as output are little large. i m pasting my code again.... file1=Image.open("./pics/original.jpg") file2=Image.open(val) diff = ImageChops.subtract(file1,file2,0.3) stat1 = ImageStat.Stat(diff) count1=stat1.sum print count1 diff.save("./pics/diff"+".jpg") diff.show() AS you can see i am finding difference of two images which are nearly identical. But they have some pixels that are different and i can see that in the output image diff.jpg. So i am trying to put this difference image in the imagestat and trying to see if i can get to count the number of pixels ....... thanks, On Sun, Mar 2, 2008 at 9:48 AM, Varsha Purohit <[EMAIL PROTECTED]> wrote: > Yes i am getting this but i was confused why i am getting 3 values for > count, extrema.. and dats y i couldn't figure out how to find area of those > pixels...... > > > On Sun, Mar 2, 2008 at 9:02 AM, Kent Johnson <[EMAIL PROTECTED]> wrote: > > > Varsha Purohit wrote: > > > of this module in this application. > > > > > > I want to find other image statistics such as finding number of pixels > > > which exist after taking difference between two images, getting sum of > > > all pixels and area of pixels that are in that image etc. > > > > I don't think you can get all of that out of ImageStat, it is pretty > > basic. > > > > In [18]: import Image, ImageStat > > In [19]: i=Image.open('kent.jpg') > > In [21]: s=ImageStat.Stat(i) > > In [23]: s.extrema > > Out[23]: [(0, 255), (0, 255), (0, 251)] > > In [24]: s.count > > Out[24]: [43200, 43200, 43200] > > In [25]: s.mean > > Out[25]: [116.61453703703704, 103.23967592592592, 97.624606481481479] > > > > etc. > > > > Kent > > > > > > -- > Varsha Purohit, > Graduate Student -- Varsha Purohit, Graduate Student
_______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor