[Image-SIG] that's enough

Jack Uretsky jlu at hep.anl.gov
Mon Jul 19 03:12:34 CEST 2010


Hi all-
 	I'n trying to find a binary veersion of matplotlib that I can 
install on my OS X Snow Leopard.  I keep ending up at SourceForg, which 
has no downlo0ad that I can see that is intended to be a Mac package.  I 
tried downloading and installing the matplotlib-1.0.0 file, but could not 
seem to be able to import from it, so it obviously was not properly 
installed.  Help would be greatly appreciated.
 				Regards,
 					Jack

"Trust me.  I have a lot of experience at this."
 		General Custer's unremembered message to his men,
 		just before leading them into the Little Big Horn Valley




On Wed, 14 Jul 2010, Yury V. Zaytsev wrote:

> ... or you can go for matplotlib and use its plot function to display
> PIL images using the NumPy array interface (see my previous postings on
> this list):
>
> import Image
> import numpy as np
> import pylab as pyl
>
> if __name__ == "__main__":
>
>    img_name = 'ch43_roi.tiff'
>    img = Image.open(img_name)
>
>    a = np.asarray(img)
>    p = a.copy().transpose((1, 0, 2))
>
>    pyl.imshow(p)
>    pyl.show()
>
> -- 
> Sincerely yours,
> Yury V. Zaytsev
>
> On Sun, 2010-07-11 at 18:16 -0500, Jack Uretsky wrote:
>> Hi-
>>  	The following worked very well:
>>>>> import Image
>>>>> d = Image.open("a_1.jpg")
>>>>> d.show()
>>>>>
>>
>>  	Now, how do I turn
>>   it off before showing another image
>>  	I'm on an Intel Mac, OS X Snow Leopard.
>>  			Regards,
>>  				Jack U.
>> "Trust me.  I have a lot of experience at this."
>>  		General Custer's unremembered message to his men,
>>  		just before leading them into the Little Big Horn Valley
>>
>>
>>
>> _______________________________________________
>> Image-SIG maillist  -  Image-SIG at python.org
>> http://mail.python.org/mailman/listinfo/image-sig
>


More information about the Image-SIG mailing list