1 | initial version |
video_captureFingerprint = cv2.VideoCapture(videoDeviceIndex) video_captureFingerprint.set(3,640) # Setting webcam's image width video_captureFingerprint.set(4,480) # Setting webcam' image height
Make sure that the webcam supports the resolution that you are setting to using v4l2-ctl command
2 | No.2 Revision |
video_captureFingerprint = cv2.VideoCapture(videoDeviceIndex)
video_captureFingerprint.set(3,640) # Setting #Setting webcam's image width
video_captureFingerprint.set(4,480) # Setting #Setting webcam' image height
Make sure that the webcam supports the resolution that you are setting to using v4l2-ctl command
3 | No.3 Revision |
video_captureFingerprintvideo_capture = cv2.VideoCapture(videoDeviceIndex)video_captureFingerprint.set(3,640)video_capture.set(3,640) #Setting webcam's image widthvideo_captureFingerprint.set(4,480)video_capture.set(4,480) #Setting webcam' image height
Make sure that the webcam supports the resolution that you are setting to using v4l2-ctl command