[Matplotlib-users] Move the content of a figure into a subplot of this figure.

2012-03-02 Thread Guillaume Gay
Hi list, I am trying to implement some GUI tools in matplotlib - more precisely a line profile tool and a contrast setter which I hope will be integrated to the skimage kit [see https://github.com/glyg/scikits-image/blob/master/skimage/io/_plugins/matplotlib_plugin.py]. Now here is my

Re: [Matplotlib-users] Move the content of a figure into a subplot of this figure.

2012-03-02 Thread Antoine Sirinelli
Hi, you should be able to do so. In the past, I had written a small GUI that had the ability to copy Line2D, images and text elements from an axe to any other axes (even on different figure). This was integrated into GUI used to change the line properties. It is a bit old and dirty but you can

Re: [Matplotlib-users] Move the content of a figure into a subplot of this figure.

2012-03-02 Thread John Hunter
On Fri, Mar 2, 2012 at 4:57 AM, Guillaume Gay guilla...@mitotic-machine.org wrote: Hi list, I am trying to implement some GUI tools in matplotlib - more precisely a line profile tool and a contrast setter which I hope will be integrated to the skimage kit [see