Complete these first:
- Python3
- Download YOLO Model weights
git clone https://github.com/jessmathews/person_detector.git
cd person_detector
# create a virtual environment to work in
python3 -m venv env
source env/bin/activate
# install requirements
pip install -r requirements.txt
# run with live webcam and confidence of >90%
python3 main.py -w -c 0.9#run on recorded video footage with confidence score > 90%
python3 main.py -v /path/to/video.mp4 -c 0.9