user input
2 ビュー (過去 30 日間)
古いコメントを表示
how to get input image from user in matlab?
0 件のコメント
回答 (1 件)
Abhinav
2023 年 1 月 17 日
ext='*.jpg' ;
folder='C:\Users\Name\Desktop\image';
[filename, path] = uigetfile(fullfile(folder,ext));
imageData = imread(fullfile(path, filename));
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!