backend.solver_params
Classes
The set of solver parameters supported in the motile tracker. |
Module Contents
- class backend.solver_params.SolverParams(/, **data: Any)
Bases:
pydantic.BaseModelThe set of solver parameters supported in the motile tracker. Used to build the UI as well as store parameters for runs.
- model_config
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- max_edge_distance: float = None
- max_children: int = None
- edge_selection_cost: float | None = None
- appear_cost: float | None = None
- division_cost: float | None = None
- distance_cost: float | None = None
- iou_cost: float | None = None
- window_size: int | None = None
- overlap_size: int | None = None
- single_window_start: int | None = None
- classmethod window_size_must_be_at_least_two(v: int | None) int | None
- classmethod overlap_size_must_be_positive(v: int | None) int | None