Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to capture a single photo with webcam opencv

cam = cv2.VideoCapture(0)

image = cam.read()[1]

cv2.imshow("image", image)

cv2.waitKey(0)
cv2.destroyAllWindows()
 
PREVIOUS NEXT
Tagged: #capture #single #photo #webcam #opencv
ADD COMMENT
Topic
Name
2+4 =