Il s'agit d'un mémorandum lorsqu'une caméra Web disponible dans le commerce est connectée à un PC avec ubuntu 16.04 installé via USB et qu'une vidéo est capturée avec python.
PC avec ubuntu 16.04 installé Caméra Web commerciale
installation d'opencv-python
pip install opencv-python
capture.py
import cv2
cap = cv2.VideoCapture(0)
while True:
ret, img = cap.read()
cv2.imshow('video', img)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
rien de spécial
Capture vidéo à l'aide d'OpenCV avec Ubuntu minimal
Recommended Posts