-
Hi Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
ktorimaru
May 27, 2022
Replies: 1 comment
-
FYI: `import cv2 while(1): |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ktorimaru
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI:
`import cv2
vcap = cv2.VideoCapture("tcp://10.215.1.47:10001")
while(1):
ret, frame = vcap.read()
cv2.imshow('VIDEO', frame)
cv2.waitKey(1)
`