Borrar filtros
Borrar filtros

Creating a dialog box menu for the imread function.

1 visualización (últimos 30 días)
Edvardas
Edvardas el 16 de Abr. de 2013
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.

Respuesta aceptada

Image Analyst
Image Analyst el 16 de Abr. de 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 comentario
Edvardas
Edvardas el 16 de Abr. de 2013
Oh, kind of an embarrassing mistake then.
Thank you for pointing out, everything works as expected now!
Regards,
Edvardas

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by