1 Star 0 Fork 1

琦琦/智能垃圾桶

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
4B_pi 提交于 2021-03-16 21:10 . 增加了按钮控制
import torch
import cv2
from camere import get_picture
from contorl_motor import *
from predict import *
from PIL import Image
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
channel = 18
GPIO.setup(channel, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
GPIO.add_event_detect(channel, GPIO.RISING, bouncetime=200)
def on_switch_pressed():
print('开始分类')
img = get_picture()
image = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
# image = Image.open("test_image/img_15654.jpg")
garbage_class = predict_garbage(image)
contorl(garbage_class)
if __name__ == '__main__':
print('请先放置垃圾')
try:
while True:
if GPIO.event_detected(channel):
on_switch_pressed()
print('请先放置垃圾')
time.sleep(0.01)
except Exception as e:
print(error)
GPIO.cleanup()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/qiqidolikelhy/intelligent-trash-can.git
git@gitee.com:qiqidolikelhy/intelligent-trash-can.git
qiqidolikelhy
intelligent-trash-can
智能垃圾桶
master

搜索帮助