필터 지우기
필터 지우기

How to extract specific frames from a video

조회 수: 2 (최근 30일)
Shameendra Narayan Halder
Shameendra Narayan Halder 2018년 7월 31일
댓글: Imranbasha Syed 2022년 5월 24일
Hey guys, does anyone know how to extract specific frames from a video? e.g, i want to extract 90, 150 and 160th frame and not any other frames. Does anyone know how to do it in a single for loop?
Right now i am using this code a=VideoReader('test.mp4'); for img = 1:a.NumberOfFrames; filename=strcat('frame',num2str(img),'.jpg'); b = read(a, img); imwrite(b,filename); end
But with this i can either extract all frames and not specific one.

채택된 답변

OCDER
OCDER 2018년 8월 1일
Try this one. Seems like read is no longer recommended, and it's replaced by readFrame. I changed the variable names too, to tell you a description of the variable as opposed to a, b, c, etc.
ReadObj = VideoReader('test.mp4');
CurFrame = 0;
GetFrame = [90 150 160];
while hasFrame(ReadObj)
CurImage = readFrame(ReadObj);
CurFrame = CurFrame+1;
if ismember(CurFrame, GetFrame)
imwrite(CurImage, sprintf('frame%d.jpg', CurFrame));
end
end
  댓글 수: 5
Felipe Palta
Felipe Palta 2020년 4월 24일
Thanks a lot. Works perfectly. A thing more to add its if you want to extract all of frames from your video you need to change GetFrame vector as:
GetFrame = 1:1:TotalframesofYourVideo;
And TotalframesofYourVideo is the length Frames of your video that you can see click on ReadObj variable or:
TotalframesofYourVideo=ReadObj.NumFrames;
Best regards
Felipe
Imranbasha Syed
Imranbasha Syed 2022년 5월 24일
I had a query?
what does the Get Frame vecotr does?? Can u explain?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for IP Cameras에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by