DetectedPose

data class DetectedPose(poseLandmarks: List<PoseLandmark>, edges: List<PoseEdge>)

This data class represents the human's pose detected on the given image.

Constructors

DetectedPose
Link copied to clipboard
fun DetectedPose(poseLandmarks: List<PoseLandmark>, edges: List<PoseEdge>)

Properties

edges
Link copied to clipboard
val edges: List<PoseEdge>

The list of edges connecting the detected PoseLandmarks.

poseLandmarks
Link copied to clipboard
val poseLandmarks: List<PoseLandmark>

The list of detected PoseLandmarks for the given image.