Display JPEG file in GUI

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?

 Akzeptierte Antwort

Chandra Kurniawan
Chandra Kurniawan am 15 Dez. 2011

1 Stimme

Fisrt you need to read your image that saved in your drive.
Eq :
I = imread('C:\My Document\Filename.jpg');
imshow(I);

1 Kommentar

Walter Roberson
Walter Roberson am 15 Dez. 2011
Right.
And No, it does not need to go in any particular folder.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Hamrit
Hamrit am 22 Mai 2012

0 Stimmen

creat Axe in your gui
then =======
I=imread('yourfile');
axes(handles.axe1);
imshow(I);

Kategorien

Mehr zu Convert Image Type finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by