summaryrefslogtreecommitdiff
path: root/server.py
blob: 7fca94544139ae8ea8b7e2e37707022910db4167 (plain)
1
2
3
4
5
6
7
8
import cv2

cap = cv2.VideoCapture("/home/flo/outvid2.avi")
while True:
    status, frame = cap.read()
    cv2.imshow("img",frame)
    cv2.waitKey(20)