编写一个获取摄像头画面的Python程序
时间: 2023-01-28 22:02:38 浏览: 123
Python写的捕获摄像头程序。
可以使用 Python 的 OpenCV 库来获取摄像头画面。
下面是一个简单的示例程序:
```
import cv2
# 打开摄像头
cap = cv2.VideoCapture(0)
while True:
# 读取摄像头画面
ret, frame = cap.read()
# 显示画面
cv2.imshow("Camera", frame)
# 如果按下 q 键,退出循环
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# 释放摄像头
cap.release()
# 关闭所有窗口
cv2.destroyAllWindows()
```
在这个程序中,我们使用 cv2.VideoCapture() 函数打开摄像头,并使用 cap.read() 函数读取摄像头画面。然后使用 cv2.imshow() 函数显示画面,使用 cv2.waitKey() 函数等待按键输入,并使用 cv2.destroyAllWindows() 关闭所有窗口。
阅读全文