Re: [Matplotlib-users] Simple scatter plot over an image

2007-06-11 Thread __
Excellent. Thank you very much! On 6/10/07, Jake Emerson <[EMAIL PROTECTED]> wrote: The python imaging library is pretty good for this kind of thing. http://www.pythonware.com/library/pil/handbook/ Here's an (untested) example. Hope it helps. Jake #!/usr/bin/env python from pylab import

Re: [Matplotlib-users] Simple scatter plot over an image

2007-06-11 Thread John Hunter
On 6/10/07, __ <[EMAIL PROTECTED]> wrote: > Hello, > > I'm trying to plot a simple list of x/y coords over an image (.png). I can > show the image, or plot the data, but cannot find a way to layer one over > the other. I would greatly appreciate someone pointing me in the right Just call imshow an

Re: [Matplotlib-users] Simple scatter plot over an image

2007-06-10 Thread Jake Emerson
The python imaging library is pretty good for this kind of thing. http://www.pythonware.com/library/pil/handbook/ Here's an (untested) example. Hope it helps. Jake #!/usr/bin/env python from pylab import scatter, save import Image #get the background image, and find out how big it is