Skip to content

Files

Latest commit

80711ad · Jan 10, 2025

History

History

palm_detection_mediapipe

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 8, 2023
Jan 10, 2025
May 25, 2022
Jan 10, 2025
Jan 10, 2025
Jun 4, 2024
Mar 17, 2023
Feb 14, 2023
Mar 21, 2023
Nov 6, 2024

Palm detector from MediaPipe Handpose

This model detects palm bounding boxes and palm landmarks, and is converted from TFLite to ONNX using following tools:

SSD Anchors are generated from GenMediaPipePalmDectionSSDAnchors

Note:

Demo

Python

Run the following commands to try the demo:

# detect on camera input
python demo.py
# detect on an image
python demo.py -i /path/to/image -v

# get help regarding various parameters
python demo.py --help

C++

Install latest OpenCV (with opencv_contrib) and CMake >= 3.24.0 to get started with:

# A typical and default installation path of OpenCV is /usr/local
cmake -B build -D OPENCV_INSTALLATION_PATH=/path/to/opencv/installation .
cmake --build build

# detect on camera input
./build/demo
# detect on an image
./build/demo -i=/path/to/image -v
# get help messages
./build/demo -h

Example outputs

webcam demo

License

All files in this directory are licensed under Apache 2.0 License.

Reference