gpt4 book ai didi

c++ - OpenCV 无法使用 Qt 打开相机

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

我发现 Qt creator 默认使用 Qt 作为 OpenCV 函数。

甚至运行打开并显示相机流的测试代码(见下文)时。在这里,无法打开相机(我使用的是 XIMEA xiQ)。使用普通的网络摄像头,它可以正常工作。

在 Eclipse 中两者都可以工作。

到目前为止我完成的步骤的简要总结:

  1. OpenCV 编译时支持 XIMEA 相机
  2. 我用 Qt 支持重新编译了 OpenCV
  3. make uninstall 为当前安装的 OpenCV
  4. make install 为新的 XIMEA 和 Qt 支持启用安装

我的测试代码:

#include "mainwindow.h"
#include <QApplication>
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>

using namespace cv;
using namespace std;

int main(int argc, char *argv[]){
QApplication a(argc, argv);
MainWindow w;
w.show();

VideoCapture cap(0);
if (!cap.isOpened()){
cout << "Cannot open the video cam" << endl;
return -1;
}

while (1){
Mat frame;
bool bSuccess = cap.read(frame);

if (!bSuccess){
cout << "Cannot read a frame from video stream" << endl;
break;
}
imshow("MyVideo", frame);
if (waitKey(30) == 27){
cout << "esc key is pressed by user" << endl;
break;
}
}
return a.exec();
}

最佳答案

终于,我弄明白了。

我不知道为什么(希望有人能对此行为做出解释)但 Qt Creator 似乎并不总是使用最新版本的 OpenCV。

我在我的电脑上发现了一些以前安装的 Qt Creator 使用的而不是更新版本的库文件。

清除每个 OpenCV 位并使用 Qt 和 XIMEA 相机驱动程序支持(以及其他不重要的东西)重新编译它后,一切正常。

希望对您有所帮助。

关于c++ - OpenCV 无法使用 Qt 打开相机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31073121/

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