Re: [Matplotlib-users] Can matplotlib be run from PythonWin IDE ininteractive mode?

2008-12-07 Thread Elfnor
Thomas Pfaff-3 wrote: > > Hi, > > does that mean that it works for you with PyScripter? > Right now the only way to do more than one plot with MPL with PyScripter > is > to reinitialize the remote python interpreter over and over again. > If you found a way around that I would be glad to hear

[Matplotlib-users] Can matplotlib be run from PythonWin IDE in interactive mode?

2008-12-03 Thread Elfnor
Hi I'm giving an introductory talk on matplotlib to colleagues next week. I'd like to run matplotlib in interactive mode from the PythonWin IDE. Is this possible? I use PyScripter or occasionally IPython myself, but the python group I'm talking to have all been set up with PythonWin and my brief

Re: [Matplotlib-users] using ginput with images -- axes are resized?

2008-11-05 Thread Elfnor
Adam-221 wrote: > > hi, I am trying to use ginput with some images and for some reason it > keeps > changing the axes with the mouse click. > I don't know if this is a feature or bug, but I would like it not to > affect > my images at all. > > here is a short example: > > #--- > from pylab imp

[Matplotlib-users] ginput changes axes limits

2008-08-06 Thread Elfnor
In the following code the displayed image is initially displayed with axes going from 0 to 103, ie there is no white space between the image and the axes. After the first ginput mouse click the axes limits change to -20 to 120 with white space between the image and the axes. This is a little dis

[Matplotlib-users] Feature Request: RectangleSelector BlockingInput

2008-08-05 Thread Elfnor
The new ginput function is great. Would it be possible to have a version that looks to the user like a RectangleSelector widget but works for the programmer like ginput? That is, it returns the coordinates of the rectangle. This would be really useful for implementing a user image crop function