Is it possible to export an imageset as a movie?
1 次查看(过去 30 天)
显示 更早的评论
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!!
0 个评论
采纳的回答
Ameer Hamza
2020-6-15
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.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!