splitting video into frames
古いコメントを表示
can someone please give me the matlab code to split a video (avi clip) into its constituent frames, and then write them to disk?
回答 (1 件)
Image Analyst
2014 年 2 月 7 日
0 投票
That's exactly what this demo (attached below in blue) does.
2 件のコメント
Sneheet
2014 年 2 月 7 日
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.
カテゴリ
ヘルプ センター および File Exchange で Video Formats and Interfaces についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!