写出python通过opencv调用摄像头实现谷物计数的代码
时间: 2023-11-12 22:08:08 浏览: 96
以下是Python通过OpenCV调用摄像头实现谷物计数的代码示例:
```python
import cv2
camera = cv2.VideoCapture(0) # 初始化摄像头,0代表默认摄像头
while True:
ret, frame = camera.read() # 读取摄像头画面
if not ret:
break
# 处理图像,实现谷物计数
cv2.imshow('Grain Counting', frame) # 显示实时画面
if cv2.waitKey(1) == ord('q'): # 按q键退出
break
camera.release() # 释放摄像头资源
cv2.destroyAllWindows() # 关闭显示窗口
```
希望能帮到您!
阅读全文