Answers for "how to check how many cameras are connected to device in python\"

0

how to check how many cameras are connected to device in python\

import cv2

def clearCapture(capture):
    capture.release()
    cv2.destroyAllWindows()

def countCameras():
    n = 0
    for i in range(10):
        try:
            cap = cv2.VideoCapture(i)
            ret, frame = cap.read()
            cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
            clearCapture(cap)
            n += 1
        except:
            clearCapture(cap)
            break
    return n

print countCameras()
Posted by: Guest on September-27-2021

Code answers related to "how to check how many cameras are connected to device in python\"

Python Answers by Framework

Browse Popular Code Answers by Language