How to input the image as input to the GUI.?
22 ビュー (過去 30 日間)
古いコメントを表示
How to input the image as input to the GUI.?
0 件のコメント
採用された回答
Walter Roberson
2017 年 4 月 24 日
[filename, pathname] = uigetfile('*.png', 'Select an image?');
if ~ischar(filename); return; end %user cancelled
filepath = fullfile(pathname, filename);
Img = imread(filepath);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!