Skip to content

Instantly share code, notes, and snippets.

@0xbustos
Created January 24, 2018 19:31
Show Gist options
  • Save 0xbustos/261651afd5f36f32d4fe4ddeb7e987ea to your computer and use it in GitHub Desktop.
Save 0xbustos/261651afd5f36f32d4fe4ddeb7e987ea to your computer and use it in GitHub Desktop.
Show webcam with python opencv
import cv2
# Initialize webcam
cap = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = cap.read()
# Display the resulting frame
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment