我刚刚在 R. Laganiere 的《OpenCV 2 Computer Vision Application Programming Cookbook》一书中读到了这一点:
需要注意的是,为了打开指定的视频文件,你的电脑必须安装相应的编解码器,否则 cv::VideoCapture 将无法理解输入文件。通常,如果您能够使用机器上的视频播放器(例如 Windows Media Player)打开视频文件,那么 OpenCV 也应该能够读取该文件。
不幸的是,事情对我来说并不容易。是的,我可以在我的视频播放器上读取 avi 文件,但它不适用于我的 OpenCV-Qt 应用程序。VideoCapture isOpen() 方法返回 false,尽管路径正确,并且所需的每个编解码器似乎都在这里。我尝试了几个文件,因此它与一种特定格式无关。
这里有人有使用 OpenCV 在 Ubuntu 中打开 avi 文件的经验吗?我认为这是一个大问题,在互联网上找不到任何真正相关的解决方案......
谢谢 !!
[编辑] 这是我正在处理的功能;这里的一些变量是类成员,所以看起来可能不完整。但是,正是这段代码不起作用。特别是,我实例化一个新的 VideoCapture 对象的那一行。
void MainWindow::on_actionOuvrir_fichier_triggered()
{
//mettre a -1 streamId
streamId = -1;
//get path to the avi file
QString fileName = QFileDialog::getOpenFileName(this,tr("Ouvrir fichier video"),"/home", tr("Videos (*.avi)"));
std::string utf8_text = fileName.toUtf8().constData();
//open .avi
capture = new VideoCapture(utf8_text);
//check
if(!capture->isOpened())
cout << "probleme ouverture fichier video" << endl;
//delay between each frame in ms
rate = capture->get(CV_CAP_PROP_FPS);
delay = 1000 / rate;
//start Qtimer recordId
recordId = startTimer(delay);
//capture first frame
if(!capture->read(in))
cout << "probleme lecture frame fichier video" << endl;
}
[编辑 2] 在 Windows 7 上测试
void MainWindow::on_actionOuvrir_fichier_triggered()
{
//mettre a -1 streamId
streamId = -1;
//ouvrir fenetre navigation fichiers pour recuperer path vers .avi
QString fileName = QFileDialog::getOpenFileName(this,tr("Ouvrir fichier video"),"/home",
tr("Videos (*.avi)"));
//std::string utf8_text = fileName.toUtf8().constData();
std::string current_locale_text = fileName.toLocal8Bit().constData();
if(QDir().exists(current_locale_text.c_str())) std::cout << "Path is good!" << endl;
//ouvrir .avi
capture = new VideoCapture(current_locale_text);
//check ouverture
if(!capture->isOpened())
cout << "probleme ouverture fichier video" << endl;
//calculer delay between each frame in ms
// rate = capture->get(CV_CAP_PROP_FPS);
// delay = 1000 / rate;
//demarrer timer recordId
recordId = startTimer(100);
//capture premiere frame
if(!capture->read(in))
cout << "probleme lecture frame fichier video" << endl;
}
使用该代码,我能够打开一些 avi 文件,但不是全部(实际上远非如此)。所以我想我肯定有编解码器问题......有人能告诉我如何在 Ubuntu 下解决这个问题吗?不要让我继续赏金!非常感谢你。
[编辑 3] 正如Etienne所建议的,我按照此处的说明,并尝试将我的视频转换为 OpenCV 在所有平台上都支持的 I420 格式,使用带有给定命令行的 mencoder。因此,根据 VLC,我从 24 位 RGB (RV24) 编解码器转到了 Planar 4:2:0 YUV (I420)。虽然行为相同,但我仍然无法实例化 VideoCapture 对象。
在 Stack Overflow 上有很多类似于我的未解决案例...