How to input the image as input to the GUI.?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
NAVEEN KUMAR
el 24 de Abr. de 2017
Respondida: Walter Roberson
el 24 de Abr. de 2017
How to input the image as input to the GUI.?
0 comentarios
Respuesta aceptada
Walter Roberson
el 24 de Abr. de 2017
[filename, pathname] = uigetfile('*.png', 'Select an image?');
if ~ischar(filename); return; end %user cancelled
filepath = fullfile(pathname, filename);
Img = imread(filepath);
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!