opencv调取摄像头
时间: 2023-07-24 18:00:35 浏览: 137
opencv调用摄像头
使用 OpenCV 在 Python 中调取摄像头的方法如下:
```python
import cv2
# 打开摄像头
cap = cv2.VideoCapture(0)
while True:
# 读取帧
ret, frame = cap.read()
# 显示帧
cv2.imshow("Camera", frame)
# 等待用户按键
if cv2.waitKey(1) & 0xFF == ord("q"):
break
# 释放摄像头
cap.release()
# 关闭窗口
cv2.destroyAllWindows()
```
阅读全文