Python Kalman filtering and optimal estimation library. Implements Kalman filter, particle filter, Extended Kalman filter, Unscented Kalman filter, g-h (alpha-beta), least squares, H Infinity, smoothers, and more. Has companion book 'Kalman and Bayesian Filters in Python'.
Is there any pointer on start implementing an IMM smoother?
It looks like for linear KF and UKF have a rts_smoother function which takes a batch-processed copy of means and covariances to do the smoothing. I am trying to get familiar with the codebase but how would I do it with IMMEstimator?
Is there any pointer on start implementing an IMM smoother?
It looks like for linear KF and UKF have a
rts_smoother
function which takes a batch-processed copy of means and covariances to do the smoothing. I am trying to get familiar with the codebase but how would I do it withIMMEstimator
?