Landmark

data class Landmark(val x: Float, val y: Float, val type: Int)

Represents a specific landmark on a face.

Parameters

x

The x-coordinate.

y

The y-coordinate.

type

The type of landmark (e.g., LEFT_EYE, NOSE_TIP).

Constructors

Link copied to clipboard
constructor(x: Float, y: Float, type: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val type: Int
Link copied to clipboard
val x: Float
Link copied to clipboard
val y: Float