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.
>>
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