Hiyve Components - v1.0.0
    Preparing search index...

    Configuration options for the sentiment analyzer.

    interface AnalyzerOptions {
        debug?: boolean;
        detectionInterval?: number;
        minConfidence?: number;
        noFaceGracePeriod?: number;
        smoothing?: boolean;
        smoothingFactor?: number;
    }
    Index

    Properties

    debug?: boolean

    Enable debug logging.

    false
    
    detectionInterval?: number

    Detection interval in milliseconds. Lower values = more responsive but higher CPU usage.

    200
    
    minConfidence?: number

    Minimum confidence threshold for face detection (0-1). Lower values = more detections but potentially more false positives.

    0.2
    
    noFaceGracePeriod?: number

    Grace period before marking participant as off-frame (ms).

    2000
    
    smoothing?: boolean

    Enable emotion smoothing to reduce flickering.

    false
    
    smoothingFactor?: number

    Smoothing factor when smoothing is enabled (0-1). Higher values = more smoothing.

    0.3