OpenCV 获取摄像头并显示摄像头视频

#include 
#include 
#include 
using namespace cv;
using namespace std;
int main()
{
    char c;
    VideoCapture inputVideo(1);    //1为外部摄像头的ID,1为笔记本内置摄像头的ID
    Mat src;
    while(1)
    {
        inputVideo >> src;
        imshow("摄像头输入",src);
       c = waitKey(10);
       if (c == 27) break;
    }
  return 0;
}

你可能感兴趣的:(OpenCV,摄像头,视频,opencv)