在 OpenCV 中将视频序列插入到另一个视频

Posted

技术标签:

【中文标题】在 OpenCV 中将视频序列插入到另一个视频【英文标题】:Inter-laying a video sequence to another video in OpenCV 【发布时间】:2016-11-28 08:45:18 【问题描述】:

如何使用 OpenCV 将小视频序列添加到另一个视频?

更详细地说,假设我正在播放一个交互式视频,假设观看视频的用户做一些手势,并且在现有视频的底部或角落播放一个简短的序列。

【问题讨论】:

【参考方案1】:

对于每一帧,您需要在视频帧内复制包含所需内容的图像。步骤是:

    定义覆盖框的大小 定义显示覆盖框的位置

    对于每一帧

      用一些内容填充覆盖框架 将覆盖帧复制到原始帧中定义的位置。

这个小 sn-p 将在相机源的右下角显示一个随机噪声叠加窗口:

#include <opencv2/opencv.hpp>
using namespace cv;
using namespace std;


int main()

    // Video capture frame
    Mat3b frame;
    // Overlay frame
    Mat3b overlayFrame(100, 200);

    // Init VideoCapture
    VideoCapture cap(0);

    // check if we succeeded
    if (!cap.isOpened()) 
        cerr << "ERROR! Unable to open camera\n";
        return -1;
    

    // Get video size
    int w = cap.get(CAP_PROP_FRAME_WIDTH);
    int h = cap.get(CAP_PROP_FRAME_HEIGHT);

    // Define where the show the overlay frame 
    Rect roi(w - overlayFrame.cols, h - overlayFrame.rows, overlayFrame.cols, overlayFrame.rows);

    //--- GRAB AND WRITE LOOP
    cout << "Start grabbing" << endl
        << "Press any key to terminate" << endl;
    for (;;)
    
        // wait for a new frame from camera and store it into 'frame'
        cap.read(frame);

        // Fill overlayFrame with something meaningful (here random noise)
        randu(overlayFrame, Scalar(0, 0, 0), Scalar(256, 256, 256));

        // Overlay
        overlayFrame.copyTo(frame(roi));

        // check if we succeeded
        if (frame.empty()) 
            cerr << "ERROR! blank frame grabbed\n";
            break;
        
        // show live and wait for a key with timeout long enough to show images
        imshow("Live", frame);
        if (waitKey(5) >= 0)
            break;
    
    // the camera will be deinitialized automatically in VideoCapture destructor
    return 0;

【讨论】:

以上是关于在 OpenCV 中将视频序列插入到另一个视频的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中将 USB 视频捕获设备友好名称与 OpenCV 端口号相关联

使用 FFmpeg 在特定时间将视频叠加到另一个视频上

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

小工具系列Python + OpenCV 图片序列转换成视频

如何使用适用于 Android 的 OpenCV 减少实时视频序列中的运动效果?

c ++如何将视频序列放入OpenCV中的vector<Mat>?