Package org.jetbrains.kotlinx.dl.api.inference.posedetection
Types
DetectedPose
Link copied to clipboard
data class DetectedPose(poseLandmarks: List<PoseLandmark>, edges: List<PoseEdge>)
Content copied to clipboard
This data class represents the human's pose detected on the given image.
MultiPoseDetectionResult
Link copied to clipboard
data class MultiPoseDetectionResult(multiplePoses: MutableList<Pair<DetectedObject, DetectedPose>>)
Content copied to clipboard
This data class represents a few detected poses on the given image.
PoseEdge
Link copied to clipboard
data class PoseEdge(poseEdgeLabel: String, probability: Float, start: PoseLandmark, end: PoseLandmark)
Content copied to clipboard
This data class represents the line connecting two points PoseLandmark of human's pose.
PoseLandmark
Link copied to clipboard
data class PoseLandmark(poseLandmarkLabel: String, probability: Float, x: Float, y: Float)
Content copied to clipboard
This data class represents one point of the detected human's pose.