supervision-js
    Preparing search index...

    Interface CBIoUTrackingOptions

    interface CBIoUTrackingOptions {
        lostTrackBuffer?: number;
        frameRate?: number;
        trackActivationThreshold?: number;
        minimumConsecutiveFrames?: number;
        minimumIouThresholdFirstAssociation?: number;
        minimumIouThresholdSecondAssociation?: number;
        minimumIouThresholdUnconfirmedAssociation?: number;
        highConfidenceDetectionThreshold?: number;
        instantFirstFrameActivation?: boolean;
        bufferRatioFirst?: number;
        bufferRatioSecond?: number;
    }
    Index
    lostTrackBuffer?: number

    Missing-track buffer expressed in 30 FPS frames.

    frameRate?: number

    Source frame rate used to scale lostTrackBuffer.

    trackActivationThreshold?: number

    Minimum confidence required to create a new track.

    minimumConsecutiveFrames?: number

    Successful observations required before a track receives an ID.

    minimumIouThresholdFirstAssociation?: number

    Minimum fused buffered-IoU score in the high-confidence pass.

    minimumIouThresholdSecondAssociation?: number

    Minimum buffered IoU in the low-confidence recovery pass.

    minimumIouThresholdUnconfirmedAssociation?: number

    Minimum fused buffered-IoU score for tentative tracks.

    highConfidenceDetectionThreshold?: number

    Confidence boundary between the first and second association stages.

    instantFirstFrameActivation?: boolean

    Whether eligible detections on the first frame receive IDs immediately.

    bufferRatioFirst?: number

    Proportional box expansion used by the first association stage.

    bufferRatioSecond?: number

    Proportional box expansion used by the second association stage.