Package-level declarations

Types

Link copied to clipboard
data class FaceInfo(val trackId: Int = -1, val x1: Float = 0.0f, val y1: Float = 0.0f, val x2: Float = 0.0f, val y2: Float = 0.0f, val confidence: Float = 0.0f, val firstSeenAt: Long = -1, val face: ImageAgent? = null, val landmarks: List<Pair<Float, Float>> = emptyList())

The FaceInfo data class is a representation of information related to a detected face within an image or video frame. It encapsulates essential details about the face, including its position, tracking information, confidence level, and associated visual features. This data class serves as a convenient and structured container for face-related data, facilitating the organization and retrieval of pertinent information.