supervision-js
    Preparing search index...

    Interface OCSortTrackingOptions

    interface OCSortTrackingOptions {
        lostTrackBuffer?: number;
        frameRate?: number;
        minimumConsecutiveFrames?: number;
        minimumIouThreshold?: number;
        directionConsistencyWeight?: number;
        highConfidenceDetectionThreshold?: number;
        deltaT?: number;
    }
    Index
    lostTrackBuffer?: number

    Missing-track buffer expressed in 30 FPS frames.

    frameRate?: number

    Source frame rate used to scale lostTrackBuffer.

    minimumConsecutiveFrames?: number

    Consecutive observations required before a recovered track emits its ID.

    minimumIouThreshold?: number

    Minimum IoU accepted by primary and last-observation association.

    directionConsistencyWeight?: number

    Weight applied to observation-centric motion-direction consistency.

    highConfidenceDetectionThreshold?: number

    Minimum confidence eligible for association and track creation.

    deltaT?: number

    Observation-history lookback used to estimate motion direction.