Stack of video thumbnails
Mostrar comentarios más antiguos
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?
Respuestas (0)
Categorías
Más información sobre Video Formats and Interfaces en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!