Always-on computer music
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 řádky
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()