kaios-types
    Preparing search index...

    Interface CameraDetectedFaceInit

    Initialization dictionary for a detected face.

    interface CameraDetectedFaceInit {
        bounds: CameraRegion;
        hasLeftEye?: boolean;
        hasMouth?: boolean;
        hasRightEye?: boolean;
        id?: number;
        leftEye: DOMPointInit;
        mouth: DOMPointInit;
        rightEye: DOMPointInit;
        score?: number;
    }
    Index

    Properties

    bounds: CameraRegion

    Bounding box of the face.

    hasLeftEye?: boolean

    Whether the left eye is detected.

    false
    
    hasMouth?: boolean

    Whether the mouth is detected.

    false
    
    hasRightEye?: boolean

    Whether the right eye is detected.

    false
    
    id?: number

    Unique identifier for the face.

    0
    
    leftEye: DOMPointInit

    Position of the left eye.

    mouth: DOMPointInit

    Position of the mouth.

    rightEye: DOMPointInit

    Position of the right eye.

    score?: number

    Confidence score (0-100).

    100