This website works better with JavaScript.
首頁
探索
說明
登入
pete
/
radio
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
1
Wiki
Activity
瀏覽代碼
Add example
tags/kitchen
Pete Shadbolt
3 年之前
父節點
8d1d70f3b4
當前提交
1671d6872a
共有
1 個文件被更改
,包括
14 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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()
Write
Preview
Loading…
取消
儲存