Ältere Kommentare anzeigen
I have to get an image address through the Edit Box in the GUI. then, i want to read the image on that address using the imread function. how to do it?
Address is of the form C:\Users\user\Documents\MATLAB\xyz.png
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 5 Jun. 2012
filename = get(handles.EDITBOXTAG, 'String'); %adjust EDITBOXTAG as needed
theimage = imread(filename);
2 Kommentare
Shree Nath
am 5 Jun. 2012
Walter Roberson
am 5 Jun. 2012
theimage = imread(filename{1});
Kategorien
Mehr zu Convert Image Type finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!