Error of opening camera with OpenCV
Hi,
I wish to initalise my camera using opencv and have set it cap = cv2.VideoCapture("/dev/video1") However, i recieve this error: VIDEOIO ERROR: V4L2: Could not obtain specifics of capture window.
Can someone please explain and help me?
please use numeric ids, not device names, like:
cap = cv2.VideoCapture(1)