Face

object Face

Face analysis tools and models.

Types

Link copied to clipboard
data class Landmark(val x: Float, val y: Float, val type: Int)

Represents a specific landmark on a face.

Link copied to clipboard
data class Orientation(val pitch: Float, val yaw: Float, val roll: Float)

Represents the 3D orientation (Euler angles) of a face.

Link copied to clipboard
data class Result(val boundingBox: LiteRTExt.BoundingBox, val landmarks: List<LiteRTExt.Face.Landmark>, val orientation: LiteRTExt.Face.Orientation? = null, val score: Float, val emotions: Map<String, Float>? = null)

Represents detailed information about a detected face.