How to make a video of two plots rather than one
Afficher commentaires plus anciens
I am iterating frame by frame between two different volumes of images, I want to make a video so that there is a side by side comparison. This is what I have to create the plots, now I want to save it into one video.
for i = range
figure(fref)
imagesc(squeeze(log(abs(vol1(i,:,:)))), [0 6]);
colormap(gray);
title(sprintf('frame %i, ogvol %i', i, volname));
figure(ftar)
imagesc(squeeze(log(abs(vol2(i,:,:)))), [0 6]);
colormap(gray);
title(sprintf('frame %i, changedvol %i', i, volname));
if i == 150
pause;
else
pause(0.1);
end
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Audio and Video Data dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!