convert video to frames and then delete some frames???
2 次查看(过去 30 天)
显示 更早的评论
i have a video,i need to divide video into different frames..and then delete some of the frames below some threshold??please help me
0 个评论
回答(2 个)
John Rogers
2019-7-10
Here is an example:
% speedUpVideo
% Keeps one out of ten frames
clear;clc
videoIn = VideoReader('hangar_free_air.mp4');
videoOut = VideoWriter('hangar_free_airFAST.mp4','MPEG-4');
open(videoOut);
frameNum = 0;
while hasFrame(videoIn)
videoFrame = readFrame(videoIn);
frameNum = frameNum+1;
if frameNum == 10
writeVideo(videoOut,videoFrame);
frameNum = 0;
end
end
close(videoOut)
0 个评论
Walter Roberson
2014-3-3
VideoReader() to read each frame, then process it, then VideoWriter() to save the frame if it is one that needs saving.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!