Es ist ein Memorandum, wenn eine im Handel erhältliche Webkamera an einen PC angeschlossen ist, auf dem Ubuntu 16.04 über USB installiert ist, und ein Video mit Python aufgenommen wird.
PC mit Ubuntu 16.04 installiert Kommerzielle Webkamera
opencv-python Installation
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()
nichts Besonderes