gpt4 book ai didi

c++ - OpenCV VideoWriter 不打开文件

转载 作者:太空宇宙 更新时间:2023-11-03 22:58:34 26 4
gpt4 key购买 nike

以下代码无法打开 VideoWriter 对象:

#include <iostream>

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

using namespace cv;
using namespace std;

int main() {
VideoWriter oVideo;
oVideo.open ("381.avi", -1, 30, Size(640,480), true);
if (!oVideo.isOpened()) {
cout << "Could not open the output video for write" << endl;
return -1;
}

return 0;
}

我在 Ubuntu 12.04 上运行使用 Code::Blocks 预构建的 OpenCV 2.4.9。我在同一个位置使用 imwrite() 写了很 multimap 像,没有问题,所以我怀疑这与权限有关。我还尝试了 CV_FOURCC('X','V','I','D') 但没有用。

我在这里错过了什么?

非常感谢任何帮助。

最佳答案

我使用这个惊人的脚本重新安装了 OpenCV:https://help.ubuntu.com/community/OpenCV

已解决。

关于c++ - OpenCV VideoWriter 不打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23650382/

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