Add scroll bar to number with subtitles

I have an m file that should display about 20 images in one picture. so now I would like to know how to add a scroll bar to a shape.

currently my code is doing something like this:

figure('Name','Results'); for a=1:20 img_result = imread(userinput); %Process image; img_result . . . subplot(5,1,a); imshow(img_result); end 

if I use this code, images change to small icons. any ideas?

+2
source share
1 answer

I believe this is what you are looking for: Scroll through a demonstration of drawings by Evan Brooks

+3
source

All Articles