The following code always prints -6.0 regardless of if the camera is pointing at something bright or something dark. Any ideas why it's doing this and how to fix it?
cap = cv2.VideoCapture(0)
while(1):
ret, image = cap.read()
print(str(cap.get(cv2.CAP_PROP_EXPOSURE)))
This is on Windows 10 running OpenCV 3.1.