splitting video into frames
44 次查看(过去 30 天)
显示 更早的评论
can someone please give me the matlab code to split a video (avi clip) into its constituent frames, and then write them to disk?
0 个评论
回答(1 个)
Image Analyst
2014-2-7
That's exactly what this demo (attached below in blue) does.
2 个评论
Image Analyst
2014-2-8
It's the line that says:
% Extract the frame from the movie structure.
thisFrame = read(videoObject, frame);
followed of course by the call to imwrite() to save only that frame to disk as a separate 2D image file.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!