在 OpenCV 中将一个视频序列插入到另一个视频中
Inter-laying a video sequence to another video in OpenCV
如何使用 OpenCV 将一个小视频序列添加到另一个视频?
为了详细说明,假设我正在播放一个交互式视频,假设观看视频的用户做了一些手势,然后在现有视频的底部或角落播放一个短序列。
对于每一帧,您需要在视频帧内复制一张包含您需要的内容的图像。步骤是:
- 定义叠加框的大小
- 定义显示覆盖框架的位置
每帧
- 用一些内容填充覆盖框架
- 在原始框架的定义位置复制覆盖框架。
这个小片段将在摄像头画面的右下角显示随机噪声叠加层 window:
#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 将一个小视频序列添加到另一个视频?
为了详细说明,假设我正在播放一个交互式视频,假设观看视频的用户做了一些手势,然后在现有视频的底部或角落播放一个短序列。
对于每一帧,您需要在视频帧内复制一张包含您需要的内容的图像。步骤是:
- 定义叠加框的大小
- 定义显示覆盖框架的位置
每帧
- 用一些内容填充覆盖框架
- 在原始框架的定义位置复制覆盖框架。
这个小片段将在摄像头画面的右下角显示随机噪声叠加层 window:
#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;
}