user input
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to get input image from user in matlab?
0 comentarios
Respuestas (1)
Abhinav
el 17 de En. de 2023
ext='*.jpg' ;
folder='C:\Users\Name\Desktop\image';
[filename, path] = uigetfile(fullfile(folder,ext));
imageData = imread(fullfile(path, filename));
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!