-
-
Save 17500mph/e7333b22781436621079dcfcacece9f4 to your computer and use it in GitHub Desktop.
Webcam capture for python - Pops up a preview from your webcam and snaps a picture when you press 'q'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cv2 | |
# Windows dependencies | |
# - Python 2.7.6: http://www.python.org/download/ | |
# - OpenCV: http://opencv.org/ | |
# - Numpy -- get numpy from here because the official builds don't support x64: | |
# http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy | |
# Mac Dependencies | |
# - brew install python | |
# - pip install numpy | |
# - brew tap homebrew/science | |
# - brew install opencv | |
cap = cv2.VideoCapture(0) | |
while(True): | |
ret, frame = cap.read() | |
rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA) | |
cv2.imshow('frame', rgb) | |
if cv2.waitKey(1) & 0xFF == ord('q'): | |
out = cv2.imwrite('capture.jpg', frame) | |
break | |
cap.release() | |
cv2.destroyAllWindows() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment