Stack of video thumbnails
이전 댓글 표시
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?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Video Formats and Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!