Re: [Matplotlib-users] displaying multiple images in series

2010-06-15 Thread Matthias Michler
On Monday, June 14, 2010 10:32:48 pm Daniel Jones wrote: Hi matplotlib users, I'm trying to write a script to loop through a bunch of tiff files, display each image, and choose to accept or reject each image. Something like: for f in files: im = imread(f) imshow(im) # Accept

[Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-15 Thread Eliot Glairon
Hello. Through accident, I found that running the following script will freeze the computer. On my computer, the mouse still worked, but everything else still froze. I have minimalized the code and attached the script for your convienence: import matplotlib matplotlib.use('TkAgg') import

[Matplotlib-users] 2D polar surface plot

2010-06-15 Thread Stephane GONAUER
Hi, After reading documentations and the matplotlib example I haven’t found a way to graph the plot I want. I am trying to display a radar video (one turn of the antenna at a time). As such I need to plot a polar surface in 2D with a colormap indicating the video intensity. My data

Re: [Matplotlib-users] Placing images on figures

2010-06-15 Thread Eamon Caddigan
Thanks for the suggestion! The reason my initial attempts failed was because I (erroneously) assumed that the default axis spanned (0, 0), (1, 1). Now I that I know better, I can place an axis for each image in the right place and everything looks fine. However, I'm still interested in knowing

Re: [Matplotlib-users] 2D polar surface plot

2010-06-15 Thread Benjamin Root
Stephane, First off, you probably do not want to use a surface plot. Rather, pcolor might be more appropriate. In addition, if you can take the azimuth-range coordinates and convert that into x-y coordinates, you can then plot a pcolor using just that. The code would look something like so

Re: [Matplotlib-users] matplotlab freezes with a graph and toolbar

2010-06-15 Thread Eric Firing
On 06/15/2010 08:02 AM, Eliot Glairon wrote: Hello. Through accident, I found that running the following script will freeze the computer. On my computer, the mouse still worked, but everything else still froze. I have minimalized the code and attached the script for your convienence: