How to display a scrollable grid of images in matlab GUI

matlab, matlab-guide

Solution

You can use this tool. In the gui, you should be able to scroll through. But to have title below every image you might have to edit the tool.

Sample output: a grid of images http://www.mathworks.in/matlabcentral/fx_files/22387/12/imdisp.jpg

Problem

How can i display a scrollable grid of images in matlab GUI? I want something similar to what is shown below This stackoverflow post describes a way of displaying images in a uitable by setting the 'String' property to an HTML code pointing to an image. But this requires me to save the images to disk which is not an option i would like as these displays are fired up dynamically. It would also be nice, if i could add a checkbox inside each image so the user can select a subset of them.

Original source