FaceDetector

interface FaceDetector

Face Detector component.

Types

Link copied to clipboard
data class Face(val confidence: Double, val position: DetectionPosition, val quality: FaceQuality)

Detected face in the image.

Functions

Link copied to clipboard
abstract fun detect(image: Image, limit: Int): List<FaceDetector.Face>

Detect faces in the image. This operation should be called on a background thread.