user input
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to get input image from user in matlab?
0 Commenti
Risposte (1)
Abhinav
il 17 Gen 2023
ext='*.jpg' ;
folder='C:\Users\Name\Desktop\image';
[filename, path] = uigetfile(fullfile(folder,ext));
imageData = imread(fullfile(path, filename));
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!