Answers for "check if the camera is working or not using python"

2

check if camera is being used python

cap = cv2.VideoCapture(0)
# the variable before frame is True if the camera is useable
useable, frame = cap.read()
Posted by: Guest on December-12-2020

Code answers related to "check if the camera is working or not using python"

Python Answers by Framework

Browse Popular Code Answers by Language