Raspberry Pi - Camera Module
What will the following Python code output when run on a Raspberry Pi with a connected camera?
import cv2 cap = cv2.VideoCapture(0) ret, frame = cap.read() print(ret)
