1 Star 0 Fork 16

东方明/基于树莓派的智能垃圾分类系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
getpic.py 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
CaliFall 提交于 2021-05-03 19:46 . update getpic.py.
#-*- coding:utf-8 -*-
'''
Copyright (c) [2021] [CaliFall]
[GarbageDetectGolf] is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details.
'''
import cv2
cap=cv2.VideoCapture(0)
i=1
while(1):
ret ,frame = cap.read()
k=cv2.waitKey(1)
if k==27:
break
elif k==32:
cv2.imwrite('/home/pi/weightphotos_?/?/?_1_'+str(i)+'.jpg',frame)
print("OK!"+"||"+str(i))
i+=1
cv2.imshow("capture", frame)
cap.release()
cv2.destroyAllWindows()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dongfang-ming/predict-garbage-with-pi.git
git@gitee.com:dongfang-ming/predict-garbage-with-pi.git
dongfang-ming
predict-garbage-with-pi
基于树莓派的智能垃圾分类系统
master

搜索帮助