필터 지우기
필터 지우기

image and GUI axis

조회 수: 2 (최근 30일)
Samah EL QASSAH
Samah EL QASSAH 2016년 11월 28일
댓글: Samah EL QASSAH 2016년 11월 28일
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일
imgS = imread('image\electronique.png');
image(imgS);
axis off
  댓글 수: 1
Samah EL QASSAH
Samah EL QASSAH 2016년 11월 28일
thanks, It works :)

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by