states.State
class State:A named field on the tracklet snapshot with predict/update/init logic.
The field name is set by the :class:`~unitrack.tracker.Tracker`'s
``states={...}`` dict key and is therefore not stored on the
:class:`~unitrack.states.State` itself, so the same
:class:`~unitrack.states.State` instance can be reused under different keys.
Parameters
| Name | Type | Description |
|---|---|---|
| schema | ~unitrack.data.TensorSpec | Per-tracklet tensor shape and dtype for the field. |
| process | Process | Predict-step implementation. |
| observation | Observation | Update-step implementation. |
| init | Initializer | Factory for new-tracklet initial values. |
Members
method
property
Source: unitrack/states/base.py:115