使用OpenCV提取视频文件开头仅几秒钟

时间:2018-07-10 01:31:07

标签: c++ opencv video-processing extraction

my previous question之后,我想从视频中提取帧。但是视频开始时只有2秒。 我想尽可能多地处理原始视频,这就是为什么我不想剪切原始视频然后对其进行处理。

这是我提取框架的代码。但这将从视频中提取所有帧:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
#include <string>
#include <sstream>

using namespace cv;
using namespace std;
int c = 0;
string int2str(int &);

int main(int argc, char **argv) {
    string s;

    VideoCapture cap("test_video.mp4"); 
    if (!cap.isOpened())  
    {
        cout << "Cannot open the video file" << endl;
        return -1;
    }

    double fps = cap.get(CV_CAP_PROP_FPS); 

    cout << "Frame per seconds : " << fps << endl;

    namedWindow("MyVideo", CV_WINDOW_NORMAL); 
    resizeWindow("MyVideo", 600, 600);
    while (1)
    {
        Mat frame;
        Mat Gray_frame;
        bool bSuccess = cap.read(frame); 

        if (!bSuccess) 
        {
            cout << "Cannot read the frame from video file" << endl;
            break;
        }
        s = int2str(c);
        //cout<<("%d\n",frame )<<endl;
        c++;
        imshow("MyVideo", frame); 
        imwrite("frame" + s + ".jpg", frame);
        if (waitKey(30) == 27) 
        {
            cout << "esc key is pressed by user" << endl;
            break;
        }
    }

    return 0;

}

string int2str(int &i) {
    string s;
    stringstream ss(s);
    ss << i;
    return ss.str();
}

还有建议吗?谢谢。

1 个答案:

答案 0 :(得分:0)

似乎您已经了解了视频的FPS。那么,不只是计算达到FPS * 2后提取并破坏了多少帧的问题?

double fps = cap.get(CV_CAP_PROP_FPS); 
int framesToExtract = fps * 2;
for (int frames = 0; frames < framesToExtract; ++frames)
{
    ... // your processing here
}

此外,我看了您之前的问题,似乎您对FPS有误解?

FPS =每秒帧数,这表示视频每秒有多少帧。假设您的视频为120 FPS。这意味着一秒钟的视频中有120帧,两秒钟之内有240帧,依此类推。

因此(VIDEO_FPS * x)可以让您在视频的x秒内获得帧数。