Zubnet AILearnWiki › Pose Estimation
Using AI

Pose Estimation

Body Pose, Skeleton Detection, Keypoint Detection
Detecting the position and orientation of a human body (or animal, hand, face) in an image or video by locating key anatomical points — joints, facial landmarks, fingertips. The output is a skeleton: a set of connected keypoints representing the body's pose. OpenPose, MediaPipe, and YOLO-Pose are popular implementations.

Why it matters

Pose estimation enables: fitness apps that analyze exercise form, sign language recognition, motion capture for animation, gesture control interfaces, sports analytics, and fall detection for elderly care. In AI image generation, pose skeletons serve as ControlNet inputs — you specify the exact body pose you want and the model generates a person in that pose.

Deep Dive

The task: given an image, predict 2D coordinates (x, y) for each keypoint (17 for body: nose, eyes, ears, shoulders, elbows, wrists, hips, knees, ankles). Top-down approaches first detect people (bounding boxes), then estimate pose within each box. Bottom-up approaches detect all keypoints first, then group them into individuals. Top-down is more accurate for few people; bottom-up is faster for crowds.

3D Pose

2D pose gives (x, y) in image coordinates. 3D pose estimates (x, y, z) in real-world coordinates, enabling depth perception (is the hand reaching toward or away from the camera?). 3D pose is essential for motion capture, VR/AR, and robotics. Models like MotionBERT and 4DHumans estimate 3D pose from a single 2D image by leveraging learned priors about human body proportions and physics.

Beyond Body Pose

Hand pose estimation tracks 21 keypoints per hand, enabling gesture recognition and sign language understanding. Face landmark detection tracks 468+ points for expression analysis, face filters, and emotion recognition. Animal pose estimation adapts the same techniques to quadrupeds, enabling wildlife research and veterinary applications. MediaPipe (Google) provides real-time solutions for body, hand, and face pose that run on mobile devices.

Related Concepts

← All Terms
ESC