在OpenCV和Python的帮助下,您可以非常轻松地完成这项工作:
cap = cv2.VideoCapture(1)
# my webcam
cap.set(3, 1280)
# set the resolution
cap.set(4, 720)
cap.set(cv2.CAP_PROP_AUTOFOCUS, 0)
# turn the autofocus off
我使用OpenCV 3.1.0-dev,Python 2.7.5和Logitech HD Pro网络摄像头C920
在OpenCV和Python的帮助下,您可以非常轻松地完成这项工作:
cap = cv2.VideoCapture(1)
# my webcam
cap.set(3, 1280)
# set the resolution
cap.set(4, 720)
cap.set(cv2.CAP_PROP_AUTOFOCUS, 0)
# turn the autofocus off
我使用OpenCV 3.1.0-dev,Python 2.7.5和Logitech HD Pro网络摄像头C920
让时间为你证明