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

4 次查看(过去 30 天)
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