我发现Qt创建者默认使用Qt作为OpenCV函数。
甚至运行打开并显示摄像机流的测试代码(见下文)。在这里,无法打开相机(我使用的是XIMEA xiQ)。使用普通网络摄像头,它正在工作。
在Eclipse中两者都有效。
到目前为止我所做的步骤的简要总结:
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();
}
答案 0 :(得分:1)
最后,我能够弄清楚。
我不知道为什么(希望有人会对这种行为有解释)但是Qt Creator似乎并不总是使用最新版本的OpenCV。
我在计算机上发现了以前安装的一些内容,而Qt Creator正在使用它而不是新版本的库文件。
清除每个OpenCV位并使用Qt和XIMEA相机驱动程序支持(以及其他不重要的东西)重新编译后,一切正常。
希望有所帮助。