# object_detector 基于 yolov5 对象识别系统 ## Develop 依赖 yolov5 3.0 ``` cd frontend npm install export NODE_OPTIONS=--openssl-legacy-provider npm run serve npm run build tar -zcf dist.tar.gz dist sudo apt update sudo apt-get install ffmpeg libsm6 libxext6 -y cd .. virtualenv .venv pip install -r requirements.txt cp -R dist/* ../static python app.py ``` docker: ``` docker build -t jianboy/objectdetector:latest . ``` ## YOLOv5模型训练 yolov5m.pt 模型。 ## YOLOv5模型预测 ## Reference - [yolov5]() - [Sharpiless](https://github.com/Sharpiless) ## License