user input
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how to get input image from user in matlab?
0 Kommentare
Antworten (1)
Abhinav
am 17 Jan. 2023
ext='*.jpg' ;
folder='C:\Users\Name\Desktop\image';
[filename, path] = uigetfile(fullfile(folder,ext));
imageData = imread(fullfile(path, filename));
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!