how to Read an image from command window

1 vue (au cours des 30 derniers jours)
raviraja
raviraja le 9 Avr 2014
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

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Avr 2014
[filename, pathname] = uigetfile('*.tif');
fullname = fullfile(pathname, filename);
ImageData = imread(fullname);
  2 commentaires
raviraja
raviraja le 9 Avr 2014
Thank you
Prathveraj Shetty
Prathveraj Shetty le 3 Mar 2019
can you show with an example if you dont mind

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by