Skip to content

Commit 4b53887

Browse files
2 parents a16fe96 + 4e86a5f commit 4b53887

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@ result_future = filter.eval(time=1)
4545

4646
## Tracker
4747

48-
Oftentimes, multiple objects must be tracked that also require filtering. SimpleFilters implements a simple multi-object tracker for this purpose.
48+
Oftentimes, multiple objects must be tracked that also require filtering. SimpleFilters implements a simple multi-object tracker for this purpose. The tracker associates objects by applying minimum weight matching to a distance graph.
4949

5050
The following properties can be defined:
5151
* **distance_threshold**: Maximum distance to match objects - when the threshold is exceeded, a new object will be created
5252
* **max_time_to_live**: If an object is not seen, it is still retained for the given number of state updates
5353
* **time_to_birth**: The number of observations needed until an object is born
5454
* **filter_prototype**: A filter that will be cloned for each new appearing object
55+
* **distance_function**: A lambda (x1, x2) that returns a distance between the two arrays
5556

5657
The **PolynomialFilterStrategy** is especially suitable for tracking, as it can predict the future state of the object according to its reconstructed polynomial:
5758
```

0 commit comments

Comments
 (0)