我想让我的 movidius NCS1 读取 IP 摄像机。这是我的代码:
import cv2
#print("Before URL")
cap = cv2.VideoCapture('rtsp://admin:sphbr7410@192.168.240.151:554/cam/realmonitor?channel=1&subtype=0')
#print("After URL")
while True:
#print('About to start the Read command')
ret, frame = cap.read()
#print('About to show frame of Video.')
print(ret,frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
但我的调试测试。我在我的树莓派中创建了一个新用户,并使用 pip 为它安装了 opencv。我如果在这个没有 openvino 初始化的用户中运行这个代码,它运行良好。但在 Openvino 环境中它无法读取相机蒸汽。
如何解决?