我已经使用Python 3.6在Windows 10计算机上使用TensorFlow编译了对象检测系统。该模型可与我的网络摄像头以及存储在PC上的视频一起使用。
我试图从IP CCTV摄像机获取以下内容的馈送:
cap = cv2.VideoCapture("http://username:password@camera ip")
这会导致错误:
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
有人可以指导我正确的方向吗?