diff --git a/docs/docs/Feed-Forward-Guide.md b/docs/docs/Feed-Forward-Guide.md index 214b8550bb16..a9548f6c66e7 100644 --- a/docs/docs/Feed-Forward-Guide.md +++ b/docs/docs/Feed-Forward-Guide.md @@ -65,8 +65,8 @@ the first stage, the subsequent stages will inherit the effects of those propert # Feed Forward Properties -Components that support feed forward have two algorithm properties that control the feed forward behavior: -`FEED_FORWARD_TYPE` and `FEED_FORWARD_TOP_QUALITY_COUNT`. +Components that support feed forward have three algorithm properties that control the feed forward behavior: +`FEED_FORWARD_TYPE`, `FEED_FORWARD_TOP_QUALITY_COUNT`, and `FEED_FORWARD_BEST_DETECTION_PROP_NAMES_LIST`. `FEED_FORWARD_TYPE` can be set to the following values: @@ -96,6 +96,14 @@ the [Quality Selection Guide](Quality-Selection-Guide/index.html). If the track of the detections in the track will be processed. If one or more detections have the same quality value, then the detection(s) with the lower frame index take precedence. +`FEED_FORWARD_BEST_DETECTION_PROP_NAMES_LIST` allows you to include detections based on properties in addition to those +chosen with the `QUALITY_SELECTION_PROPERTY`. It consists of a string that is a semi-colon separated list of detection +properties. For example, you may want to use something other than `CONFIDENCE` for the `QUALITY_SELECTION_PROPERTY`, but +you also want to include the detection with the highest confidence in your feed-forward track. If the component executing +in the first stage of the pipeline adds a `BEST_CONFIDENCE` property to the detection with highest confidence in each track, +you can then set the `FEED_FORWARD_BEST_DETECTION_PROP_NAMES_LIST` property to `BEST_CONFIDENCE`, and the detections with +that property will be added to the feed-forward track. + # Superset Region diff --git a/docs/site/Feed-Forward-Guide/index.html b/docs/site/Feed-Forward-Guide/index.html index 133dc0a59588..6208488c4073 100644 --- a/docs/site/Feed-Forward-Guide/index.html +++ b/docs/site/Feed-Forward-Guide/index.html @@ -324,8 +324,8 @@

First Stage and Combining Properti stage to use feed forward. Because only the frames with detections, and those detection regions, are passed forward from the first stage, the subsequent stages will inherit the effects of those properties set on the first stage.

Feed Forward Properties

-

Components that support feed forward have two algorithm properties that control the feed forward behavior: -FEED_FORWARD_TYPE and FEED_FORWARD_TOP_QUALITY_COUNT.

+

Components that support feed forward have three algorithm properties that control the feed forward behavior: +FEED_FORWARD_TYPE, FEED_FORWARD_TOP_QUALITY_COUNT, and FEED_FORWARD_BEST_DETECTION_PROP_NAMES_LIST.

FEED_FORWARD_TYPE can be set to the following values: