cap = cv2.VideoCapture(0)
isError, frame = cap.read()
print(frame.shape) # output (480, 640, 3)
Whereas the normal webcam capture is of (720,1280) size. Note that I am not talking about ratio. The image I am getting from cv2 is actually cropped automatically!!!
How can I get the whole webcam image?