Hi!
I wrote a code to insert images in axis:
function start2_Callback(hObject, eventdata, handles)
axes(handles.axes2);
imgS = imread('image\electronique.png');
image(imgS);
I get this image
I would like to know how can I show my picture without the axes appearing?

 채택된 답변

KSSV
KSSV 2016년 11월 28일
편집: KSSV 2016년 11월 28일

0 개 추천

imgS = imread('image\electronique.png');
image(imgS);
axis off

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Interactions, Camera Views, and Lighting에 대해 자세히 알아보기

질문:

2016년 11월 28일

댓글:

2016년 11월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by