以下代码无法打开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')
但没有用。
我在这里缺少什么?
非常感谢任何帮助。
答案 0 :(得分:1)
我使用这个神奇的脚本重新安装了OpenCV:https://help.ubuntu.com/community/OpenCV
解决。
答案 1 :(得分:0)
确保您的计算机中安装了特定的编解码器。