1 | initial version |
IF you're using the v4l backend, try:
cap.set(cv2.CAP_PROP_MODE, cv2.CAP_MODE_YUYV)
(it probably only works there)
2 | No.2 Revision |
3 | No.3 Revision |
IF you're using the v4l backend, try:
cap.set(cv2.CAP_PROP_MODE, cv2.CAP_MODE_YUYV)
(it probably only works there)
IF that works, the grayscale image is just frame[:,:,0]
4 | No.4 Revision |
IF you're using the v4l backend, try:
cap.set(cv2.CAP_PROP_MODE, cv2.CAP_MODE_YUYV)
(it probably only works there)
IF that works, the grayscale image from the YUV is just frame[:,:,0]