How to set image in axes in matlab GUI?
Date: 2022-12-22 11:36:08
i have a code which gives several images as ouput and i want to set all these images in particular axes in GUI in matlab. I'm trying to make a GUI of the code. For eg.
figure,imshow(s1); figure,imshow(s2); figure,imshow(s2&s1)
and i want to set the output image of first command in, say axes3, output image of second command in axes4 and similarly last output image in axes5.
Although i know i need to use
and i want to set the output image of first command in, say axes3, output image of second command in axes4 and similarly last output image in axes5.
Although i know i need to use
command but i don't know the exact syntax on how to make the image be shown in particular axes. Please give explain on how to make this happen with any suitable example. Thanks in advance.