We decided that this process was very subjective and wasted manpower, so we planned this project to replace it with the role of artificial intelligence.
This project not only proposes artificial intelligence that replaces the role of the student instructor, but also proposes a service that can manage penalty points and attendance.
Considering the limitations of data collection, this project was carried out on the premise of certain conditions.
i) It's a girls' high school where skirts and shirts are school uniforms.
ii) Consider summer clothes only
YOLOv5 🚀
Jaewoo Park |
Hyunjin Lee |
Minah Choi |
Eunsu Shin |
- Jaewoo Park (jerife@naver.com)
- Hyunjin Lee (shsan0324@gmail.com)
- Minah Choi (mina7245@gmail.com)
- Eunsu Shin (ses2201@g.hongik.ac.kr)
$ git clone https://github.com/hynjxn/Uniform-Detection-Using-YOLOv5.git
$ cd Uniform-Detection-Using-YOLOv5
$ conda create -n project python=3.9
$ conda activate project
# PyTorch installation process may vary depending on your hardware (1.7.0 <= pytorch <= 1.9.0)
$ conda install pytorch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 cpuonly -c pytorch
$ pip install -r requirements.txt
# Edit info.yaml to connect with your DB
$ vim info.yaml
You can set info.yaml as follow:
account:
mysql:
host: Input your DB host
user: Input your id
password: Input your PW
db: Input your DB name
charset: utf8mb4
# Run with python
$ python wsgi.py
# Run with gunicorn
$ gunicorn --bind 0.0.0.0:5000 wsgi:app