blob: 5d2b678b6bd42f1aba84fe1c3e5f9aea8573d387 [file] [log] [blame]
Hyunsun Moon887e3e62020-02-21 15:27:12 -08001%YAML:1.0
2
3NvDCF:
4 maxTargetsPerStream: 50 # Max number of targets to track per stream. Recommended to set >10. Note: this value should account for the targets being tracked in shadow mode as well. Max value depends on the GPU memory capacity
5
6 filterLr: 0.11 # learning rate for DCF filter in exponential moving average. Valid Range: [0.0, 1.0]
7 gaussianSigma: 0.75 # Standard deviation for Gaussian for desired response when creating DCF filter
8
9 minDetectorConfidence: 0.0 # If the confidence of a detector bbox is lower than this, then it won't be considered for tracking
10 minTrackerConfidence: 0.6 # If the confidence of an object tracker is lower than this on the fly, then it will be tracked in shadow mode. Valid Range: [0.0, 1.0]
11
12 featureImgSizeLevel: 1 # Size of a feature image. Valid range: {1, 2, 3, 4, 5}, from the smallest to the largest
13 SearchRegionPaddingScale: 3 # Search region size. Determines how large the search region should be scaled from the target bbox. Valid range: {1, 2, 3}, from the smallest to the largest
14
15 maxShadowTrackingAge: 9 # Max length of shadow tracking (the shadow tracking age is incremented when (1) there's detector input yet no match or (2) tracker confidence is lower than minTrackerConfidence). Once reached, the tracker will be terminated.
16 probationAge: 0 # Once the tracker age (incremented at every frame) reaches this, the tracker is considered to be valid
17 earlyTerminationAge: 0 # Early termination age (in terms of shadow tracking age) during the probation period
18
19 minVisibiilty4Tracking: 0.5 # If the visibility of the bbox of a tracker gets lower, then it will be terminated