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

    Interface FaceDetectionOptions

    interface FaceDetectionOptions {
        detector?: "tinyFaceDetector" | "ssdMobilenetv1";
        inputSize?: number;
        minConfidence?: number;
        scoreThreshold?: number;
    }
    Index
    detector?: "tinyFaceDetector" | "ssdMobilenetv1"

    Detector model. Default: 'ssdMobilenetv1' for detectFace, 'tinyFaceDetector' for detectFacePresence

    inputSize?: number

    TinyFaceDetector input size (128/160/224/320/416/512/608). Default: 320

    minConfidence?: number

    SSD MobileNet min confidence (0-1). Default: 0.5

    scoreThreshold?: number

    TinyFaceDetector score threshold (0-1). Default: 0.5