opencv rtsp stream python

Solutions on MaxInterview for opencv rtsp stream python by the best coders in the world

showing results for - "opencv rtsp stream python"
Dacey
06 Apr 2017
1vcap = cv.VideoCapture("rtsp://192.168.1.2:8080/out.h264")
2
3while(1):
4
5    ret, frame = vcap.read()
6    cv.imshow('VIDEO', frame)
7    cv.waitKey(1)
8