user input
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to get input image from user in matlab?
0 commentaires
Réponses (1)
Abhinav
le 17 Jan 2023
ext='*.jpg' ;
folder='C:\Users\Name\Desktop\image';
[filename, path] = uigetfile(fullfile(folder,ext));
imageData = imread(fullfile(path, filename));
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!