How to display image in multiple plots in GUIDE
Show older comments
Hello,
I have to axes on my GUI : axe1 and axe2 and I want to display two images in the opening function, so I do this :
axes(handles.axe1)
imagesc(image1);
axes(handles.axe2)
imagesc(image2);
The first command works well and displays the image on axes1. But the second command displays image2 on axe1 and axe2, erasing the work of the first command on axe1.
Any idea on how to avoid this?
Thank you!
4 Comments
Matt J
on 7 Jan 2013
We would probably need to see your actual code to detect the problem.
TheBeginner
on 7 Jan 2013
Edited: Image Analyst
on 7 Jan 2013
Matt J
on 7 Jan 2013
Do you do anything to handles.main_image and handles.blurred_image before attempting to display to them?
TheBeginner
on 7 Jan 2013
Accepted Answer
More Answers (0)
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!