Connect camera ip (Hikvision) to jetson tx2 without internet

Hi,

How can I solve it?

Thanks!

Please provide more details to reproduce your issue, such as what have you done, SW version…etc. Thanks

Hi,

(I used the wire from the IP camera to connect to the jetson TX2)

I use this code to show video capture

import cv2

cap = cv2.VideoCapture('rtsp://admin:phamquangnam123@192.168.1.64')

while True:
    ret, frame = cap.read()
    cv2.imshow("Capturing",frame)

    if cv2.waitKey(30) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()

but this is error

Thanks

Hi kayccc,

I fixed my issue, I change some config in wire setting.

Thanks you

1 Like

Hi,
The URI looks invalid. You may check with vendor to have valid URI.

Two python samples for your reference:

1 Like