how can i display the image in GUI??

4 visualizaciones (últimos 30 días)
sudha
sudha el 26 de Feb. de 2013
This is my code. To read the image from the file and display that image..m able to read the image but m not able to display it. How do i correct it???
someone plz help me out???
handles.output = hObject;
[fn pn] = uigetfile('*.jpg','select jpg file');
complete = strcat(pn,fn);
set(handles.edit2,'String',complete);
str=get(handles.edit2,'String');
I=imread(str);
figure,imshow(I)

Respuesta aceptada

Walter Roberson
Walter Roberson el 26 de Feb. de 2013
complete = fullfile(pn,fn);
The pathname returned by uigetfile does not necessarily have the directory separator at the end of it.
  1 comentario
sudha
sudha el 27 de Feb. de 2013
Thank you..but its not displaying still...

Iniciar sesión para comentar.

Más respuestas (2)

Doug Hull
Doug Hull el 26 de Feb. de 2013

sudha
sudha el 27 de Feb. de 2013
ya i got it...Thank you

Community Treasure Hunt

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

Start Hunting!

Translated by