0

我最近重新安装了 Ubuntu - 12.04。我正在使用网络摄像头为 OpenCV 中的程序拍摄视频。它不适用于我的网络摄像头,但同一段代码适用于我的朋友。我的网络摄像头适用于 Cheese。我正在使用的代码是:

#include "opencv2/highgui/highgui.hpp"
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc_c.h"
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define heightBirdEyeView 1000
#define widthBirdEyeView 1000   //earlier was 300 300
#define _USE_MATH_DEFINES

//public class VideoCapture;
using namespace cv;         
using namespace std;

int main(int argc, char** argv)
{
VideoCapture cap(0); // open the default camera

if(!cap.isOpened())
{ // check if we succeeded
cout<<"cam not open"<<endl;
return -1;}

 cout<<"yay"<<endl;

Mat frame;
while(1)
{
cap >> frame; 

imshow("frame", frame);

if(waitKey(30) >= 27) 
break;
}

return 0;}

有什么问题?

4

1 回答 1

0

v4l2 或 v4l 可能会丢失,请检查您的 make 输出。应该是 highgui 问题。

于 2013-10-20T20:32:00.107 回答