states.WeightedFuse
class WeightedFuse:Score-aware blend that uses a per-detection score as the blend weight.
Each tracklet field is blended as ``(1 - w) * field + w * detection``,
where ``w`` is the detection's ``weight_field`` clamped to ``[0, 1]``.
Parameters
| Name | Type | Description |
|---|---|---|
| field | str | Tracklet field to blend. |
| weight_field | str | Detection field holding the per-detection blend weight (e.g. a score in ``[0, 1]``). |
Members
property
Source: unitrack/states/ema.py:150