This is a model trained for detecting hands in photos based on YOLOv11.
We used the 100DOH as the train&val set.
If you want to use the model we trianed directly, please follow the steps:
git clone https://github.com/sunnygit2005/YOLOv11_4_hands
We suggest to use the python=3.9:
conda create -n yolov11 python=3.9
pip install -r requirements.txt
The model was stored in hand_model/weights/best.pt, and you can do a test by following this:
cd ./ultralytics
yolo predict model=hand_model/weights/best.pt source=test_photos/test_hand1.jpg
Of course you can do other task by reading the director docs of the original work of YOLOv11 @https://github.com/ultralytics/ultralytics