tags:

views:

44

answers:

1

Hi,

I'm looking for how can I display an image in my GUI in a specific region of my interface.

+2  A: 

In GUIDE, you can draw axes into the GUI. Then, in a callback function, you can plot an image into the axes.

Personally, I would rather not have the image inside the GUI, because it makes it harder to resize everything properly, and if you want to have a closer look at the image, or capture it to paste into another application, having the figure as part of the GUI can be inconvenient. Thus, I prefer to have the image open in a separate figure window.

Jonas