User selects image in gui and selected image goes into axes??

조회 수: 4 (최근 30일)
lc1994
lc1994 2016년 2월 25일
댓글: lc1994 2016년 2월 25일
I have a gui, and a push button which the user will click, it will then open and the user will select and image. I then want this selected image to go into the axes. So far this is the code i have, but no images goes into axes after selecting.
i = uigetfile({'*.png';});
axes(handles.axes1)
imshow(i);

채택된 답변

Kevin Claytor
Kevin Claytor 2016년 2월 25일
The variable 'i' in your code is the filepath to the image, not the image itself, you still have to load the image:
i = uigetfile({'*.png';});
img = imread(i);
axes(handles.axes1);
imshow(img);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by