how to insert image to gui?

조회 수: 51 (최근 30일)
sandy
sandy 2014년 5월 22일
편집: sandy 2014년 5월 22일
i want to insert image to gui.i created axes and tried to insert.imaged is loaded,but error is ,imaged not loading inside the axes og gui o/p.it opening as separate image window.help needed

답변 (1개)

Romain
Romain 2014년 5월 22일
편집: Romain 2014년 5월 22일
You can use the function 'axes' to select the axe for your image :
axes(axisHandle)
matlabImage = imread('image.png');
image(matlabImage)
axis off
axis image
if you are using GUIDE, add this code in the OpeningFcn
  댓글 수: 7
Romain
Romain 2014년 5월 22일
Nothing in particular. For Example, I have create a new project in GUIDE : an 'GUI with Axes and Menu' and just add this line in the test_OpeningFcn:
axes(handles.axes1)
matlabImage = imread('C:\UsersDocuments\image.jpg');
image(matlabImage)
axis off
axis image
And it's working perfectly.
sandy
sandy 2014년 5월 22일
편집: sandy 2014년 5월 22일
thanks romain ....i try again with new file. also i have clarification how to rotate a image.thing is .i need to rotate a steering of a car in gui,so i am going for rotating a steering image file.can you help with this.. http://www.mathworks.com/matlabcentral/answers/130637-how-to-rotate-a-image-in-gui

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

카테고리

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