type

states.Process

class Process(typing.Protocol):

Predict-step protocol: advance a tracklet field by one time step.

Implementations are pure functions of ``(cs, ctx)``; they read the named field on the tracklet snapshot and return a new snapshot with the field updated by ``ctx.delta``.

Members

method

  • __call__Advance the named field by ``ctx.delta``.

Source: unitrack/states/base.py:21