kaios-types
    Preparing search index...

    Interface CameraDetectedFace

    Represents a face detected by the camera. Maps to DOMCameraDetectedFace.

    camera.control.face_detection.enabled

    interface CameraDetectedFace {
        bounds: DOMRect;
        hasLeftEye: boolean;
        hasMouth: boolean;
        hasRightEye: boolean;
        id: number;
        leftEye: DOMPoint | null;
        mouth: DOMPoint | null;
        rightEye: DOMPoint | null;
        score: number;
    }
    Index

    Properties

    bounds: DOMRect

    Bounding box.

    hasLeftEye: boolean

    Whether the left eye is present.

    hasMouth: boolean

    Whether the mouth is present.

    hasRightEye: boolean

    Whether the right eye is present.

    id: number

    Unique identifier.

    leftEye: DOMPoint | null

    Position of the left eye.

    mouth: DOMPoint | null

    Position of the mouth.

    rightEye: DOMPoint | null

    Position of the right eye.

    score: number

    Confidence score.