YOLO | Pose Estimation
Overview
The YOLO | Pose Estimation plugin allows you to estimate the pose of people in your image, using points, bounding boxes, and polylines.
Plugin Functionality
The YOLO | Pose Estimation Plugin enables automatic detection and localization of human keypoints in images using a pre-trained YOLO-based pose estimation model. The plugin identifies key body joints such as the head, shoulders, elbows, wrists, hips, knees, and ankles, generating structured pose annotations for each person detected.
Supported Data Types
Image
Supported Annotation Tools
Point
Polyline
Bounding Box
Plugin Configuration
The Overwrite setting in model plugins controls whether existing annotations are replaced or kept. When enabled, the plugin replaces all existing annotations with new model predictions; when disabled, it simply adds the new results without deleting what’s already there.
The Class Mapping setting defines how the model’s predicted classes are linked to your project’s label schema. Follow these steps to prepare your class mapping.
In the "Class Mapping" field, open the left dropdown, and pick from one of the classes the plugin can detect.
Open the right dropdown, and pick from one of the tools you have created in your project.
Click on the "plus" button to finalize the pairing. Now the object class and your bounding box tool are linked. The plugin will use the selected bounding box tool to label the selected category.
Starting again from Step 1, link as many tools to categories as needed.

You may vary a number of settings related to your export from the Config JSON field. Each option is detailed below:
{
"only_mapped_classes": false,
"threshold": 0.5
}"only_mapped_classes": If this is set to true, the plugin will detect only the classes that are mapped in the class mapping. If it’s false, it will detect all supported classes, and any unmapped ones will be assigned to the "unknown" class.
Example:
"only_mapped_classes": true
"only_mapped_classes": false
"threshold": The confidence score threshold for object detection. Detections with a confidence score below this value will be filtered out. A higher threshold reduces false positives but may miss low-confidence detections.
Example:
"threshold": 0.5
Last updated