Answers for "opencv rtsp stream python"

0

opencv rtsp stream python

vcap = cv.VideoCapture("rtsp://192.168.1.2:8080/out.h264")

while(1):

    ret, frame = vcap.read()
    cv.imshow('VIDEO', frame)
    cv.waitKey(1)
Posted by: Guest on August-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language