com.google.mlkit.vision.pose

  • Pose detection in images is done using the PoseDetector client which returns a Pose object.

  • PoseDetectorOptionsBase can be used for configuring the pose detector, with options for detector mode and hardware configuration.

  • The Pose object contains individual landmarks represented by PoseLandmark, each with a specific LandmarkType.

  • PoseDetection is the main entry point to obtaining a PoseDetector instance.

Annotations

PoseDetectorOptionsBase.DetectorMode The detector mode which indicates whether detection is for single image or for streaming. 
PoseDetectorOptionsBase.HardwareConfig Hardware configuration for pose detection. 
PoseLandmark.LandmarkType Landmark types for pose. 

Interfaces

PoseDetector A PoseDetection client for finding Pose in a supplied image. 

Classes

Pose Result of PoseDetection
PoseDetection Entry point to get a PoseDetector for finding Pose in a supplied image. 
PoseDetectorOptionsBase Base options for PoseDetector
PoseLandmark Represents one pose landmark in a detected pose.