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:
impor
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 (ass
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 ho
Hi,
After reading documentations and the matplotlib example I havent 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
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 mat
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)
>#