Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
pete
/
radio
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
1
Wiki
Actividad
Explorar el Código
Add example
tags/kitchen
Pete Shadbolt
hace 3 años
padre
8d1d70f3b4
commit
1671d6872a
Se han
modificado 1 ficheros
con
14 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+14
-0
radio.py
+ 14
- 0
radio.py
Ver fichero
@@ -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()
Escribir
Vista previa
Cargando…
Cancelar
Guardar