[Matplotlib-users] Image as marker and axes "equal" aspect ratio

2012-09-19 Thread Andrea Gavana
Hi All, I am currently trying to plot 4 points (but they will be more, in an animated sequence later), and I am trying to use an image as a point marker. I am using the axes transData transform to get the point coordinates from the data world to the display world. Everything seems to be worki

Re: [Matplotlib-users] Image as marker and axes "equal" aspect ratio

2012-09-21 Thread Moore, Eric (NIH/NIDDK) [F]
> -Original Message- > From: Andrea Gavana [mailto:andrea.gav...@gmail.com] > Sent: Wednesday, September 19, 2012 11:09 AM > To: matplotlib-users@lists.sourceforge.net > Subject: [Matplotlib-users] Image as marker and axes "equal" aspect > ratio > > Hi A

Re: [Matplotlib-users] Image as marker and axes "equal" aspect ratio

2012-09-21 Thread Andrea Gavana
t: [Matplotlib-users] Image as marker and axes "equal" aspect >> ratio >> >> Hi All, >> >> I am currently trying to plot 4 points (but they will be more, in >> an animated sequence later), and I am trying to use an image as a point >> marker

Re: [Matplotlib-users] Image as marker and axes "equal" aspect ratio

2012-09-22 Thread Jae-Joon Lee
I recommend you to use OffsetImage. Here is an example of how one can use OffsetImage. http://matplotlib.org/examples/pylab_examples/demo_annotation_box.html And attached is the modified version of the original script. Regards, -JJ image_in_axes.py Description: Binary data ---

Re: [Matplotlib-users] Image as marker and axes "equal" aspect ratio

2012-09-24 Thread Andrea Gavana
On 22 September 2012 16:57, Jae-Joon Lee wrote: > I recommend you to use OffsetImage. Here is an example of how one can > use OffsetImage. > > http://matplotlib.org/examples/pylab_examples/demo_annotation_box.html > > And attached is the modified version of the original script. Thank you JJ, I was