写一个代码在python中用opencv调用网络摄像头
时间: 2024-05-03 08:20:33 浏览: 36
python使用opencv驱动摄像头
很高兴为您提供帮助!下面是您需要的代码:
```python
import cv2
# 连接网络摄像头
cap = cv2.VideoCapture('http://your_ip_address:port/video')
while True:
# 读取视频帧
ret, frame = cap.read()
# 显示视频帧
cv2.imshow('frame', frame)
# 按 'q' 键退出
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# 释放资源
cap.release()
cv2.destroyAllWindows()
```
请注意替换 'http://your_ip_address:port/video' 中的 'your_ip_address' 和 'port',以便与您的网络摄像头匹配。
阅读全文