how to Read an image from command window

1 回表示 (過去 30 日間)
raviraja
raviraja 2014 年 4 月 9 日
コメント済み: Prathveraj Shetty 2019 年 3 月 3 日
Is there any way to read an image from command window to matlab .m file..?
that means if we give an image name in command window or any GUI the image will go to running matlab .m file
Ex: in command window if i give cameraman.tif my algorithm has to take that as input image

採用された回答

Walter Roberson
Walter Roberson 2014 年 4 月 9 日
[filename, pathname] = uigetfile('*.tif');
fullname = fullfile(pathname, filename);
ImageData = imread(fullname);
  2 件のコメント
raviraja
raviraja 2014 年 4 月 9 日
Thank you
Prathveraj Shetty
Prathveraj Shetty 2019 年 3 月 3 日
can you show with an example if you dont mind

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by