opencv之采集摄像头数据

[cpp] view plain copy
  1. #include   
  2. #include   
  3. #include   
  4.   
  5. using namespace cv;  
  6.   
  7.   
  8. int main()  
  9. {  
  10.     VideoCapture cap(0);  
  11.     if(!cap.isOpened())  
  12.     {  
  13.         return -1;  
  14.     }  
  15.     Mat frame;  
  16.     Mat edges;  
  17.   
  18.     bool stop = false;  
  19.     while(!stop)  
  20.     {  
  21.         cap>>frame;  
  22.         cvtColor(frame, edges, CV_BGR2GRAY);  
  23.         GaussianBlur(edges, edges, Size(7,7), 1.5, 1.5);  
  24.         Canny(edges, edges, 0, 30, 3);  
  25.         imshow("当前视频",edges);  
  26.         if(waitKey(30) >=0)  
  27.             stop = true;  
  28.     }  
  29.     return 0;  
  30. }  

对代码的几点说明:

1. VideoCapture类有两种用法,一种是VideoCapture(const string& filename)用来打开视频文件,一种是VideoCapture(int device)用来打开设备。

2. isOpened函数用来检测VideoCapture类是否打开成功。

3. C++版本的OpenCV有一个明显的好处,就是不需要释放操作(不论是视频还是图片),VideoCapture类的析构函数会自动帮你完成。

你可能感兴趣的:(opencv)