使用Opencv和python与NVR连接时,如何从海康威视CCTV IP摄像机获取图像进行图像处理?

时间:2019-01-14 07:09:25

标签: opencv image-processing opencv3.0 face-recognition opencv3.1

我正在使用两个与(DS-7600系列)NVR连接的HIKVISION IP摄像机(DS-2CD204WFWD-I)和(DS-2CD214WFWD-I)。现在如何使用Opencv和python访问这些相机?

我已经尝试过此方法,该方法不起作用,代码正在运行,并且未获取框架。随着NVR软件的摄像头也正在显示实时流和andoird应用程序中,但我没有得到任何与python的帧。因此,请帮助我如何使用opencv进行摄像头面部识别。

import numpy as np
import cv2

cap = cv2.VideoCapture()

cap.open("rtsp://yourusername:yourpassword@172.16.30.248:555/
Streaming/channels/2/")

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',ret)

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

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

我希望两个相机都应使用opencv打开。

1 个答案:

答案 0 :(得分:0)

嗯,通常的地址是:

  • 主要频道:rtsp://您的用户名:yourpassword@172.16.30.248:555 / 流/频道/ 101

  • 第二个频道:rtsp://您的用户名:yourpassword@172.16.30.248:555 / Streaming / Channels / 102