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?
source share