Azzera filtri
Azzera filtri

how to Read an image from command window

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Walter Roberson
Walter Roberson il 9 Apr 2014
[filename, pathname] = uigetfile('*.tif');
fullname = fullfile(pathname, filename);
ImageData = imread(fullname);

Più risposte (0)

Categorie

Scopri di più su Convert Image Type in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by