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 inference_yolo.py --weights <path_to_yolo11_weights> --source <path_to_img>
This work has received partial funding from the Hellenic Foundation for Research & Innovation (H.F.R.I.) scholarship under grant agreement No 20490 (Deep Learning Methodologies for Trustworthy Intelligent Systems) and the research project ”Robotic Safe Adaptation In Unprecedented Situations (RoboSAPIENS)”, which is implemented in the framework of Horizon Europe 2021-2027 research and innovation programme under grant agreement No 101133807. This publication reflects the authors’ views only. The European Commission are not responsible for any use that may be made of the information it contains.
Learn more about RoboSAPIENS.