以下代码无法打开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()编写了许多图像而没有问题,因此我怀疑它与权限有关。我也尝试了CV_FOURCC('X','V','I','D'),它不起作用。

我在这里想念什么?

任何帮助是极大的赞赏。

最佳答案

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

解决了。

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

10-11 22:46