Borrar filtros
Borrar filtros

GUI

2 visualizaciones (últimos 30 días)
Shree Nath
Shree Nath el 5 de Jun. de 2012
I have to get an image address through the Edit Box in the GUI. then, i want to read the image on that address using the imread function. how to do it?
Address is of the form C:\Users\user\Documents\MATLAB\xyz.png

Respuesta aceptada

Image Analyst
Image Analyst el 5 de Jun. de 2012
Why not use uigetfile() instead - it's much friendlier to the user than having to type in some filename that they can't even see or easily verify that it exists.
  1 comentario
Shree Nath
Shree Nath el 5 de Jun. de 2012
exactly wat i wanted .. thank you :)

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 5 de Jun. de 2012
filename = get(handles.EDITBOXTAG, 'String'); %adjust EDITBOXTAG as needed
theimage = imread(filename);
  2 comentarios
Shree Nath
Shree Nath el 5 de Jun. de 2012
had tried it already..
it said -
??? Conversion to logical from cell is not
possible.
Walter Roberson
Walter Roberson el 5 de Jun. de 2012
theimage = imread(filename{1});

Iniciar sesión para comentar.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by