列出可用的相机 OpenCV/Python

SEU*_*SEU 7 python opencv python-3.7 opencv4

我的 PC 上连接了多个网络摄像头,我想根据其信息(名称、分辨率等)选择一台摄像头。有没有办法列出 PC 上可用的所有摄像机,而不是尝试 cv2.VideoCapture() 中的所有索引?

G M*_*G M 9

要回答问题的标题,您可以使用 while 循环:

import cv2


def list_ports():
"""
Test the ports and returns a tuple with the available ports and the ones that are working.
"""
    is_working = True
    dev_port = 0
    working_ports = []
    available_ports = []
    while is_working:
        camera = cv2.VideoCapture(dev_port)
        if not camera.isOpened():
            is_working = False
            print("Port %s is not working." %dev_port)
        else:
            is_reading, img = camera.read()
            w = camera.get(3)
            h = camera.get(4)
            if is_reading:
                print("Port %s is working and reads images (%s x %s)" %(dev_port,h,w))
                working_ports.append(dev_port)
            else:
                print("Port %s for camera ( %s x %s) is present but does not reads." %(dev_port,h,w))
                available_ports.append(dev_port)
        dev_port +=1
    return available_ports,working_ports
Run Code Online (Sandbox Code Playgroud)

这是在您的代码上实现的一个非常简单的解决方案。

  • 我发现这比所选答案更有用,因为它是用 Python 编写的。谢谢 (3认同)

fir*_*ant 6

答案是否定的。OpenCV 没有列出系统上可用视频捕获设备的方法。如果您查看代码,您会发现 OpenCV 当前如何处理不存在的无效设备索引。以 MacOS 为例,代码如下:

if ( cameraNum < 0 || devices.count <= NSUInteger(cameraNum) ) {
    fprintf(stderr, "OpenCV: out device of bound (0-%ld): %d\n", devices.count-1, cameraNum);
    [localpool drain];
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

您会看到devices.count返回可用设备的数量,但 OpenCV 没有方法将其返回给用户。

Windows 的相关代码在这里

if ((unsigned)m_deviceID >= m_devices.Get()->Size)
{
    OutputDebugStringA("Video::initGrabber - no video device found\n");
    return false;
}
Run Code Online (Sandbox Code Playgroud)

同样,没有返回m_devices.Get()->Size给用户的功能。Linux 代码稍微复杂一些。

如果您从代码构建 OpenCV,您可以添加一个返回可用设备数量的函数。或者甚至更好地向 OpenCV 提交带有补丁的拉取请求。