Skip to content

cidl-auth/robotic-human-detection-lowcam

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Human Detection Based on Lightweight Models, Optimized for Cameras Mounted on Robots

Overview

This repository provides a human detection tool based on lightweight models optimized for performing on cameras mounted on robots.

Installation

python3.10 -m venv ./myenv
source ./myenv/bin/activate
pip install -r ./requirements.txt

Download COCO

python download_coco.py --year 2017 --target_dir ./datasets/coco

Perform data augmentation on COCO

python augment_coco.py --year 2017 --target_dir ./datasets/coco

Transform JSON to YOLO data format

python json2yolo.py --year 2017 --target_dir ./datasets/coco

Train YOLO (e.g. YOLO11n)

python train_yolo.py --model YOLO11n --yaml_fln ./datasets/coco/coco2017_augm.yaml \
--output_dir ./out/yolo11n

Run inference on a signle image

python inference_yolo.py --weights <path_to_yolo11_weights> --source <path_to_img>

Acknowledgments

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.

EU Flag

Learn more about RoboSAPIENS.

RoboSAPIENS Logo

About

Human detection baed on lightweight models, optimized for cameras mounted on robots.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%