You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current Tracking algorithm(s) delete a tracked object once it is no longer found in frame, however, the Tracker libs are capable or reacquiring objects once reported by the inference engine again. The DSL tracking needs to be able to support the same.
The text was updated successfully, but these errors were encountered:
Tracker config files specify two config properties relavant to this.
maxShadowTrackingAge: 51# Max length of shadow tracking. If the shadowTrackingAge exceeds this limit, the tracker will be terminated.earlyTerminationAge: 1# If the shadowTrackingAge reaches this threshold while in TENTATIVE period, the target will be terminated prematurely.
NVIDIA Sample Configs:
IOU - maxShadowTrackingAge: 38
NvDCF_Acuracy - maxShadowTrackingAge: 42
NvDCF_Perf - maxShadowTrackingAge: 51
NvDeepSORT - maxShadowTrackingAge: 68
There will be a new DSL symbolic constant defined as
/** * @brief The maximum number of consecutive frames a tracked object * can go undetected before it is purged and no longer tracked. */#defineDSL_ODE_TRACKED_OBJECT_MISSING_FROM_FRAME_MAX 100
The current Tracking algorithm(s) delete a tracked object once it is no longer found in frame, however, the Tracker libs are capable or reacquiring objects once reported by the inference engine again. The DSL tracking needs to be able to support the same.
The text was updated successfully, but these errors were encountered: