ソースを参照

Add example

tags/kitchen
コミット
1671d6872a
1個のファイルの変更14行の追加0行の削除
  1. +14
    -0
      radio.py

+ 14
- 0
radio.py ファイルの表示

@@ -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()

読み込み中…
キャンセル
保存