2 Star 13 Fork 4

Assassin/树莓派 YOLO 检测

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test_camera.py 618 Bytes
一键复制 编辑 原始数据 按行查看 历史
Assassin 提交于 2020-12-17 20:11 . add file
import cv2
# url = "http://192.168.137.136:8085/?action=stream"
url = "http://192.168.137.136:8080/?action=stream"
# 打开网络摄像头
# cap = cv2.VideoCapture(url)
cap = cv2.VideoCapture(0)
cap.set(cv2.CAP_PROP_BUFFERSIZE, 3) # set this solve lag?
# 创建可以调节大小的窗口
cv2.namedWindow("video", 0)
while (1):
# 读取一帧,如果有剩余帧ret为ture,否则为false
# ret, frame = cap.read()
ret, frame = cap.read()
# print(ret, frame)
cv2.imshow("video", frame)
# print(ret)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hardychenlong/raspberry-pie4b-yolo-detection.git
git@gitee.com:hardychenlong/raspberry-pie4b-yolo-detection.git
hardychenlong
raspberry-pie4b-yolo-detection
树莓派 YOLO 检测
master

搜索帮助