Reference
Iapetus is a package for learning, exploring, developing, testing, demonstrating and sharing object filtering (a.k.a. target tracking) approaches and implementations.
State transition matrix module.
straight_constant_velocity(dt)
Returns a 2D state transition matrix modeling straight movement with constant velocity.
I.e., an object propagated with this model will move in the same direction without turning at constant speed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dt |
float
|
time increment (aka sample rate) |
required |
Source code in iapetus/core/linalg/stm.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | |