How to input the image as input to the GUI.?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
NAVEEN KUMAR
le 24 Avr 2017
Réponse apportée : Walter Roberson
le 24 Avr 2017
How to input the image as input to the GUI.?
0 commentaires
Réponse acceptée
Walter Roberson
le 24 Avr 2017
[filename, pathname] = uigetfile('*.png', 'Select an image?');
if ~ischar(filename); return; end %user cancelled
filepath = fullfile(pathname, filename);
Img = imread(filepath);
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!