How to input the image as input to the GUI.?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
NAVEEN KUMAR
il 24 Apr 2017
Risposto: Walter Roberson
il 24 Apr 2017
How to input the image as input to the GUI.?
0 Commenti
Risposta accettata
Walter Roberson
il 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 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!