网络摄像头不适用于Ubuntu 12.04,适用于奶酪,不适用于OpenCV

时间:2013-10-20 04:41:57

标签: c++ opencv ubuntu webcam

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

#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;}

可能出现什么问题?

1 个答案:

答案 0 :(得分:0)

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