浏览代码

Add example

tags/kitchen
Pete Shadbolt 3 年前
父节点
当前提交
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()

正在加载...
取消
保存