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
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
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