Always-on computer music
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
212B

  1. import cv2
  2. camera = cv2.VideoCapture(0)
  3. while True:
  4. ret, frame = camera.read()
  5. cv2.imshow('Input', frame)
  6. c = cv2.waitKey(1)
  7. if c == 27:
  8. break
  9. camera.release()
  10. cv2.destroyAllWindows()