how to Read an image from command window

2 次查看(过去 30 天)
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);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by