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

2010-06-20 Thread Daniel Jones
3:26 AM, Matthias Michler wrote: > 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. >>

[Matplotlib-users] displaying multiple images in series

2010-06-14 Thread Daniel Jones
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 keyboard input to accept or reject image # Close the image The p