Re: [Matplotlib-users] viewing an image cube / sequence with imshow

2007-06-27 Thread Jason Addison
Thanks John and Angus. I can't wait to try out your recommendations. I'm upgrading my system at the moment, so I'm not able to try them out just now. It is promising that matplotlib seems to be able to handle this pretty easily. -

Re: [Matplotlib-users] viewing an image cube / sequence with imshow

2007-06-27 Thread John Hunter
On 6/27/07, John Hunter <[EMAIL PROTECTED]> wrote: > Here is a simple example showing how to do this -- we could add > support for this in a built-in function. It would be nice if we > encapsulated the scroll mouse in our event handling, since the scroll > is the natural way to browse these image

Re: [Matplotlib-users] viewing an image cube / sequence with imshow

2007-06-27 Thread John Hunter
On 6/26/07, Jason Addison <[EMAIL PROTECTED]> wrote: I would like to view a 3D array (or a python list of 2D arrays) as a sequence of images using something like imshow. For example, something like this: imshow(rand(6,12,12), imagecube=true) Here is a simple example showing how to do this --

Re: [Matplotlib-users] viewing an image cube / sequence with imshow

2007-06-26 Thread Angus McMorland
Hi Jason, On 27/06/07, Jason Addison <[EMAIL PROTECTED]> wrote: I would like to view a 3D array (or a python list of 2D arrays) as a sequence of images using something like imshow. For example, something like this: Are there other packages that do this? I have written an image browser mod

[Matplotlib-users] viewing an image cube / sequence with imshow

2007-06-26 Thread Jason Addison
I would like to view a 3D array (or a python list of 2D arrays) as a sequence of images using something like imshow. For example, something like this: imshow(rand(6,12,12), imagecube=true) then the display would show a 12x12 image, [0, :, :]. Then I could scroll through the other frames to displa