使用OpenCV将带有摄像机的IP输入到python中

时间:2018-11-19 14:08:46

标签: python opencv ip-camera

我是这里的新手:-)因此,我设法使用简单的python代码访问计算机的网络摄像头:

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):
    # Capture frame-by-frame
    ret, frame = cap.read()

    # Our operations on the frame come here
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    # Display the resulting frame
    cv2.imshow('frame',gray)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

如何修改该代码以访问IP摄像机,例如使用IP 192.168.0.10,端口80,用户:XXX和PW:YYY

感谢您的帮助!

问题已解决,我的摄像头(ETROVISION)的正确Mod是:

cap = cv2.VideoCapture('rtsp://192.168.0.10:554/rtpvideo1.sdp')

因为我没有在相机设置上进行身份验证,所以不需要输入密码!

0 个答案:

没有答案