This model estimates 33 pose keypoints and person segmentation mask per detected person from
person detector. (The image below is referenced from
MediaPipe Pose Keypoints)
1# detect on camera input
2python demo.py
3# detect on an image
4python demo.py -i /path/to/image -v
1# A typical and default installation path of OpenCV is /usr/local
2cmake -B build -D OPENCV_INSTALLATION_PATH=/path/to/opencv/installation .
3cmake --build build
4
5# detect on camera input
6./build/opencv_zoo_pose_estimation_mediapipe
7# detect on an image
8./build/opencv_zoo_pose_estimation_mediapipe -m=/path/to/model -i=/path/to/image -v
9# get help messages
10./build/opencv_zoo_pose_estimation_mediapipe -h
All files in this directory are licensed under
Apache 2.0 License.