15 lines
245 B
Python
Executable File
15 lines
245 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import cv2
|
|
|
|
camera =cv2.VideoCapture("/dev/video0")
|
|
|
|
while True:
|
|
_,image = camera.read()
|
|
cv2.imshow("image",image)
|
|
if cv2.waitKey(1) & 0xFF == ord("s"):
|
|
break
|
|
|
|
camera.release()
|
|
cv2.destroyAllWindows()
|