Display JPEG file in GUI
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to display an image in my GUI.
An example given by Matlab on how to do this is by using imshow command:
imshow('board.tif')
now i want to display an image i've created.
how am i going to do that?
Do i have to place the file into specific folder?
0 comentarios
Respuesta aceptada
Chandra Kurniawan
el 15 de Dic. de 2011
Fisrt you need to read your image that saved in your drive.
Eq :
I = imread('C:\My Document\Filename.jpg');
imshow(I);
1 comentario
Walter Roberson
el 15 de Dic. de 2011
Right.
And No, it does not need to go in any particular folder.
Más respuestas (1)
Hamrit
el 22 de Mayo de 2012
creat Axe in your gui
then =======
I=imread('yourfile');
axes(handles.axe1);
imshow(I);
0 comentarios
Ver también
Categorías
Más información sobre Display Image 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!