From: Fahim Chandurwala on
Greetings:
I would like to select all the .bmp files in a folder for image analysis. Right now, how I do this is by uigetfile command, which then opens up a dialog box for me to select files and I select all the .bmp files. Is there a way to skip the dialog box and have it automatically choose all the image files in the folder? Thank you.
--Fahim
From: ImageAnalyst on
Fahim Chandurwala:

bmpFiles = dir('C:\Documents and Settings\username\My Documents\My
Pictures\*.bmp')

Put in your own folder, obviously.