Package org.jetbrains.kotlinx.dl.api.inference.posedetection

Types

DetectedPose
Link copied to clipboard
data class DetectedPose(landmarks: List<PoseLandmark>, edges: List<PoseEdge>) : FlatShape<DetectedPose>

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

MultiPoseDetectionResult
Link copied to clipboard

This data class represents a few detected poses on the given image.

PoseEdge
Link copied to clipboard
data class PoseEdge(start: PoseLandmark, end: PoseLandmark, probability: Float, label: String) : FlatShape<PoseEdge>

This data class represents the line connecting two points PoseLandmark of human's pose.

PoseLandmark
Link copied to clipboard
data class PoseLandmark(x: Float, y: Float, probability: Float, label: String) : FlatShape<PoseLandmark>

This data class represents one point of the detected human's pose.