How to input the image as input to the GUI.?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
NAVEEN KUMAR
am 24 Apr. 2017
Beantwortet: Walter Roberson
am 24 Apr. 2017
How to input the image as input to the GUI.?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 24 Apr. 2017
[filename, pathname] = uigetfile('*.png', 'Select an image?');
if ~ischar(filename); return; end %user cancelled
filepath = fullfile(pathname, filename);
Img = imread(filepath);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!