OpenCV 无法使用 Qt 打开相机
OpenCV cannot open a camera by using Qt
我发现 Qt creator 默认使用 Qt 作为 OpenCV 函数。
甚至 运行 一个测试代码(见下文)打开并显示相机流。在这里,无法打开相机(我使用的是 XIMEA xiQ)。使用普通网络摄像头,它可以正常工作。
在 Eclipse 中两者都可以正常工作。
到目前为止我完成的步骤的简要总结:
- OpenCV 编译时支持 XIMEA 相机
- 我重新编译了支持 Qt 的 OpenCV
make uninstall
当前安装的 OpenCV
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 相机驱动程序支持(以及其他不重要的东西)重新编译它后,一切正常。
希望对您有所帮助。
我发现 Qt creator 默认使用 Qt 作为 OpenCV 函数。
甚至 运行 一个测试代码(见下文)打开并显示相机流。在这里,无法打开相机(我使用的是 XIMEA xiQ)。使用普通网络摄像头,它可以正常工作。
在 Eclipse 中两者都可以正常工作。
到目前为止我完成的步骤的简要总结:
- OpenCV 编译时支持 XIMEA 相机
- 我重新编译了支持 Qt 的 OpenCV
make uninstall
当前安装的 OpenCVmake 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 相机驱动程序支持(以及其他不重要的东西)重新编译它后,一切正常。
希望对您有所帮助。