Przeglądaj źródła

Add example

tags/kitchen
Pete Shadbolt 3 lat temu
rodzic
commit
1671d6872a
1 zmienionych plików z 14 dodań i 0 usunięć
  1. +14
    -0
      radio.py

+ 14
- 0
radio.py Wyświetl plik

@@ -0,0 +1,14 @@
import cv2

camera = cv2.VideoCapture(0)

while True:
ret, frame = camera.read()
cv2.imshow('Input', frame)

c = cv2.waitKey(1)
if c == 27:
break

camera.release()
cv2.destroyAllWindows()

Ładowanie…
Anuluj
Zapisz