Skip to content

Instantly share code, notes, and snippets.

@KenoLeon
Last active August 3, 2020 21:17
Show Gist options
  • Select an option

  • Save KenoLeon/da7ae0052e11121fb6681315395c2eb1 to your computer and use it in GitHub Desktop.

Select an option

Save KenoLeon/da7ae0052e11121fb6681315395c2eb1 to your computer and use it in GitHub Desktop.
import cv2
cap = cv2.VideoCapture(0)
while(True):
ret, frame = cap.read()
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment