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?
채택된 답변
추가 답변 (1개)
Hamrit
2012년 5월 22일
creat Axe in your gui
then =======
I=imread('yourfile');
axes(handles.axe1);
imshow(I);
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!