gpt4 book ai didi

opencv - OpenCV同时播放2个视频

转载 作者:行者123 更新时间:2023-12-02 17:44:12 25 4
gpt4 key购买 nike

我想同时展示两个视频。以下代码可以正常工作,但是在完成视频后会出现错误。如果我只播放一个视频,则不会发生此错误。有什么帮助吗?

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

using namespace cv;
using namespace std;

int main()
{

string filename1 = "C:/test_videos/toy_plane_liftoff.avi";
string filename2 = "C:/test_videos/toy_plane_liftoff_stab.avi";

VideoCapture capture1(filename1);
VideoCapture capture2(filename2);

Mat frame1, frame2;

if (!capture1.isOpened())
throw "Error1";
if (!capture2.isOpened())
throw "Error2";
for (int i = 0; i <= min(capture1.get(CV_CAP_PROP_FRAME_COUNT), capture2.get(CV_CAP_PROP_FRAME_COUNT)); i++)
{
capture1 >> frame1;
capture2 >> frame2;

imshow("1", frame1);
imshow("2", frame2);

if (waitKey(30) >= 0)
break;
}

return 0;
}

最佳答案

您可以通过以下方式摆脱错误

    if( !frame1.empty())
imshow("1", frame1);
if( !frame2.empty())
imshow("2", frame2);

关于opencv - OpenCV同时播放2个视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38780947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com