フィルターのクリア

How to input the image as input to the GUI.?

1 回表示 (過去 30 日間)
NAVEEN KUMAR
NAVEEN KUMAR 2017 年 4 月 24 日
回答済み: Walter Roberson 2017 年 4 月 24 日
How to input the image as input to the GUI.?

採用された回答

Walter Roberson
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 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by