Creating a dialog box menu for the imread function.
이전 댓글 표시
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.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!