This repository provides a human detection tool based on lightweight models optimized for performing on cameras mounted on robots.
python3.10 -m venv ./myenv
source ./myenv/bin/activate
pip install -r ./requirements.txt
python download_coco.py --year 2017 --target_dir ./datasets/coco
python augment_coco.py --year 2017 --target_dir ./datasets/coco
python json2yolo.py --year 2017 --target_dir ./datasets/coco
python train_yolo.py --model YOLO11n --yaml_fln ./datasets/coco/coco2017_augm.yaml \
--output_dir ./out/yolo11n
python download_pretrained.py --model YOLO11s --save_dir ./out
python inference_yolo.py --weights <path_to_yolo11_weights> --source <path_to_img>