Choreo Display SDK - v0.2.0
    Preparing search index...

    Interface FaceDetectionResult

    interface FaceDetectionResult {
        box: { height: number; width: number; x: number; y: number } | null;
        descriptor: ArrayBuffer | null;
        error?: string;
    }
    Index
    box: { height: number; width: number; x: number; y: number } | null

    Face bounding box in detection canvas coordinates. Null if no face found.

    descriptor: ArrayBuffer | null

    128-D face descriptor as ArrayBuffer. Rehydrate as new Float32Array(descriptor). Null if no face found.

    error?: string

    Error code if detection failed. Undefined on success.