supervision-js
    Preparing search index...

    Interface ByteTrackTrackingOptions

    interface ByteTrackTrackingOptions {
        lostTrackBuffer?: number;
        frameRate?: number;
        trackActivationThreshold?: number;
        minimumConsecutiveFrames?: number;
        minimumIouThreshold?: number;
        highConfidenceDetectionThreshold?: number;
    }
    Index
    lostTrackBuffer?: number

    Missing-track buffer expressed in 30 FPS frames. Zero removes on the first miss.

    frameRate?: number

    Source frame rate used to scale lostTrackBuffer.

    trackActivationThreshold?: number

    Minimum confidence required to create a new track. Missing confidence is 1.

    minimumConsecutiveFrames?: number

    Consecutive observations required before a track receives an ID.

    minimumIouThreshold?: number

    Minimum intersection-over-union accepted by either association stage.

    highConfidenceDetectionThreshold?: number

    Confidence boundary between the first and second association stages.