cap.set(cv2.CAP_PROP_PASSWORD, password)报错
时间: 2024-04-30 14:20:25 浏览: 141
fav-prop.set-deep:在对象树中设置属性值
`cv2.CAP_PROP_PASSWORD` 是 OpenCV 中 VideoCapture 对象的一个常量,用于设置 RTSP 流的密码。但是这个常量并不存在,所以会报错。
如果你需要设置 RTSP 流的密码,可以在 RTSP 地址中添加用户名和密码,例如:
```python
rtsp_url = "rtsp://username:password@192.168.1.100:554/stream"
cap = cv2.VideoCapture(rtsp_url)
```
其中 `username` 是 RTSP 流的用户名,`password` 是密码。
阅读全文