This website works better with JavaScript.
Home
Explore
Help
Sign In
pete
/
radio
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
Add example
tags/kitchen
Pete Shadbolt
3 years ago
parent
8d1d70f3b4
commit
1671d6872a
1 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+14
-0
radio.py
+ 14
- 0
radio.py
View File
@@ -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…
Cancel
Save