blob: fdf231bf67061037d10b367e75f25e2af34fc338 [file] [log] [blame]
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07001# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07002#
Jeremy Ronquillo6046ce32020-06-18 11:06:29 -07003# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
Jeremy Ronquilloec2d3e42020-06-05 11:33:39 -07004
Jeremy Ronquillo223db002020-06-05 10:28:22 -07005%YAML:1.0
6
7NvDCF:
8 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
9
10 filterLr: 0.11 # learning rate for DCF filter in exponential moving average. Valid Range: [0.0, 1.0]
11 gaussianSigma: 0.75 # Standard deviation for Gaussian for desired response when creating DCF filter
12
13 minDetectorConfidence: 0.0 # If the confidence of a detector bbox is lower than this, then it won't be considered for tracking
14 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]
15
16 featureImgSizeLevel: 1 # Size of a feature image. Valid range: {1, 2, 3, 4, 5}, from the smallest to the largest
17 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
18
19 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.
20 probationAge: 0 # Once the tracker age (incremented at every frame) reaches this, the tracker is considered to be valid
21 earlyTerminationAge: 0 # Early termination age (in terms of shadow tracking age) during the probation period
22
23 minVisibiilty4Tracking: 0.5 # If the visibility of the bbox of a tracker gets lower, then it will be terminated