OpenCV count the number of connected camera 检测连接的摄像头的数量

有时候在项目中我们需要检测当前连接在机子上的摄像头的数量,可以通过下面的代码实现,其中连接摄像头的最大数量maxCamNum可以任意修改:

/**
 * Count current camera number
 */
int countCamera() {
    int maxCamNum = 5;
    int count = 0;
    for(int device = 0; device < maxCamNum; device++) 
    {
        CvCapture* capture;
        if (_capture[device]) {
            ++count;
        }
        else {
            capture = cvCaptureFromCAM(CV_CAP_DSHOW + device);
            if (capture) {
                ++count;
            }
            cvReleaseCapture(&capture);
        }
    }
    return count;
}

本文转自博客园Grandyang的博客,原文链接:检测连接的摄像头的数量OpenCV count the number of connected camera ,如需转载请自行联系原博主。

上一篇:jquery ajax return值 没有返回 的解决方法


下一篇:linux rpm安装时候出现冲突或依赖关系的解决办法