Filters

Public filter exports.

The filter namespace is intentionally lazy. Importing pyrecest.filters or a small baseline filter such as :class:KalmanFilter should not import advanced trackers, plotting helpers, or optional-domain modules. This keeps the public API convenient while reducing import-time coupling between the baseline package and heavier research features.

__all__ = tuple(_FILTER_EXPORTS) module-attribute

__getattr__(name)

Resolve public filter symbols lazily on first access.

__dir__()

List lazily exported filter symbols for interactive use.