使用openCV打开USB摄像头

本文的有代码哦 O(∩_∩)O

 

You Raise Me Up——Sissel

 

 

 

使用openCV打开USB摄像头(UVC 小米micro接口)

    VideoCapture capture;
    capture.open(3);  //open the default camera -1才是默认摄像机,3是我的USBCaemra的
    if (capture.isOpened())
    {

        qDebug()<<"camera open!!!";
    }
    Mat edges;
    namedWindow("edges",1);
    for(;;)
    {
        Mat frame; //定义一个Mat变量,用于存储每一帧的图像
        capture>>frame

你可能感兴趣的:(opencv)