Creating a dialog box menu for the imread function.

1 view (last 30 days)
Hello,
Currently I am finishing an image analyzing script the reads graphs from a .jpg image file. One of the things I did is make it viable to use for various sizes of image files for different graphs, however I am stuck on implementing a menu through which I could choose an image file which then would be read via the imread function, and then the data would be used throughout the script.
Ideally what I'm thinking of is something of the form of this (I realize that this particular option can only be run when using Load function, I think, I just put it as an example of what I'm aiming towards), tp is the matrix for the image file:
if menu == 1
tp=imread('temp468.jpg');
elseif menu == 2
tp=imread('temp480.jpg');
elseif menu == 3
tp=imread('temp502.jpg');
elseif menu == 4
tp=imread('temp590.jpg');
elseif menu == 5
tp=imread('temp597.jpg');
elseif menu == 6
tp=imread('temp711.jpg');
elseif menu == 7
tp=imread('temp730.jpg');
elseif menu == 8
tp = imread('temp850.jpg');
end
menu = menu('title', 'Tile 468', 'Tile 480', 'Tile 502', 'Tile 590', 'Tile 597', 'Tile 711', 'Tile 730', 'Tile 850');
If someone would have a suggestion of what could be done to get a pop up menu which would allow the selection of what image file to read I would be very grateful.
Thank you for your time.
Regards,
Edvardas.

Accepted Answer

Image Analyst
Image Analyst on 16 Apr 2013
Don't use menu for both the function and it's return argument. Also, the call to menu() must come before you call imread() so that you know what image to read in.
  1 Comment
Edvardas
Edvardas on 16 Apr 2013
Oh, kind of an embarrassing mistake then.
Thank you for pointing out, everything works as expected now!
Regards,
Edvardas

Sign in to comment.

More Answers (0)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!