how to Read an image from command window

2 visualizaciones (últimos 30 días)
raviraja
raviraja el 9 de Abr. de 2014
Comentada: Prathveraj Shetty el 3 de Mzo. de 2019
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

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by