how to convert images to video with avifile?
14 views (last 30 days)
Show older comments
Hi everybody I need make a video with a sequence of images and I can not do it
thanks
0 Comments
Answers (2)
Walter Roberson
on 14 Sep 2011
Small example:
aviobj = avifile('YourFile.avi');
for K = 1 : 10
thisframe = rand(64,64,3); %for example
addframe(aviobj, thisframe);
end
close(aviobj);
0 Comments
See Also
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!