gpt4 book ai didi

video - OPENCV,无法打开类 VideoWriter

转载 作者:行者123 更新时间:2023-12-02 16:43:06 26 4
gpt4 key购买 nike

我是新手,开始在 ubuntu 10.4 上使用 OpenCV。我正在尝试从相机捕获视频并将该视频写入 avi 文件,代码如下:

#include "opencv2/opencv.hpp"
#include <iostream>
#include <vector>
#include <stdio.h>
#include <opencv2/highgui/highgui.hpp>

using namespace cv;

int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if(!cap.isOpened()) // check if we succeeded
return -1;

namedWindow("cam1",CV_WINDOW_AUTOSIZE);
Mat frame;

VideoWriter outputVideo("lalala.avi", CV_FOURCC('D','I','V','X') , 30, Size(720, 480) , true); // or frame.size()
outputVideo.open("lalala.avi", CV_FOURCC('D','I','V','X') , 30, Size(720, 480), true) ; // or frame.size()

if( !outputVideo.isOpened() ) {
printf("VideoWriter failed to open!\n");
}

for(;;)
{
cap >> frame; // get a new frame from camera

imshow("cam1", frame);

outputVideo.write(frame); // or outputVideo << frame;

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

return 0;
}

我的问题是我无法打开 VideoWriter 类,但我可以很好地从相机中获取帧。我尝试过使用不同的编解码器值和大小,但没有任何变化。

知道为什么程序不初始化 VideoWriter 类吗?

最佳答案

要么您没有写入文件的权限,要么您使用的编解码器未包含在您的 openCV 构建中。

要下载并安装完整的 opencv(包括 ffmpeg),请参阅 http://opencv.willowgarage.com/wiki/InstallGuide%20%3A%20Debian

关于video - OPENCV,无法打开类 VideoWriter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9666709/

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