Stack of video thumbnails
Show older comments
I have a simple image in a matlab, and the a simple graphical overlay. For example
img=imshow('pic1.bmp');
[m,n,c]=size(img);
for i=1:1000
imshow(img);hold on;
plot(rand(1)*n,rand(1)*m,'g+');
drawnow;
end
Is there a way in Matlab,to obtain one big image containing all figure thumbnails made at each time step?
Answers (0)
Categories
Find more on Video Formats and Interfaces in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!