필터 지우기
필터 지우기

Display JPEG file in GUI

조회 수: 3 (최근 30일)
Cheng Yoong
Cheng Yoong 2011년 12월 15일
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?

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2011년 12월 15일
Fisrt you need to read your image that saved in your drive.
Eq :
I = imread('C:\My Document\Filename.jpg');
imshow(I);
  댓글 수: 1
Walter Roberson
Walter Roberson 2011년 12월 15일
Right.
And No, it does not need to go in any particular folder.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Hamrit
Hamrit 2012년 5월 22일
creat Axe in your gui
then =======
I=imread('yourfile');
axes(handles.axe1);
imshow(I);

카테고리

Help CenterFile Exchange에서 Display Image에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by