Azzera filtri
Azzera filtri

Is it possible to export an imageset as a movie?

2 visualizzazioni (ultimi 30 giorni)
HI!
I have a series of images imported as an imageset into the workspace. Would it be possible to convert this imageset into a video format that I can then export?
Thanks!!

Risposta accettata

Ameer Hamza
Ameer Hamza il 15 Giu 2020
See VideoWriter(): https://www.mathworks.com/help/releases/R2020a/matlab/ref/videowriter.html. Something like this will work
imgSet = % create the imageset object
v = VideoWriter('vidFileName.mpr', 'MPEG-4');
open(v)
for i=1:imgSet.Count
frame = read(imgSet,i);
writeVideo(v, frame);
end
close(v)
This assumes that all images have same resolution.
  2 Commenti
Pranaya Kansakar
Pranaya Kansakar il 15 Giu 2020
Thanks for your answer!
It works for appending images from the imageset to a tiff as well!

Accedi per commentare.

Più risposte (0)

Prodotti


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by