Get frames of a video
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm doing a video with with a series of images I took a camera but they are saved in a numeric way so I need to get the images and de video separatly.
I'm being able to get the video. How do I get the also the images in a specific folder.
I'm using the next code:
for i=1:size(array)
frame = getframe(gcf);
writeVideo(v,frame);
close
end
close(v)
2 commentaires
Geoff Hayes
le 6 Juil 2020
UA - please clarify what you mean bey get frames of video and/or how do I get also the images in a specific folder. Are you having trouble reading (or loading) the images from a particular folder? Is the order of the files incorrect? Or do you want to save the frames of the video as images? In your above code, what is array? Is it initialized to a set of images or is it something else?
Réponses (1)
Image Analyst
le 6 Juil 2020
See my attached demo. I use it to read in all the frames of a video and then, optionally, write them out to individual image files. Then, optionally, read in the individual image files from disk to create a new movie.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!