|
|
|
|
|
by oasisaimlessly
981 days ago
|
|
The "Integrating Generic Sensor Fusion Algorithms with
Sound State Representations through Encapsulation of Manifolds" paper linked from your [1] is indeed the current state of the art. It shows how to use the EKF or UKF for rotation. The naive Kalman filter is only suited for linear problems; extended and unscented Kalman filters (EKF/UKF) are necessary for anything non-linear (including rotation). In any case, they build on the basic KF, so you have to understand that first. |
|
If this is the current state of the art, are there generally-available/open-source libraries existing that implement this and practitioners use for this?
The only one I could find is https://github.com/kartikmohta/manifold_cdkf, which currently has 8 Github stars.
I also found an approach mentioned in [2] that is to just treat a single rotation angle as linear, and then wrap it around at 180 degrees in between state updates with additional conditional logic. Is this what people did in practice before? I cannot find substantial info on this.
How did people use KF on physical objects before 2010?
[2]: https://old.reddit.com/r/ControlTheory/comments/d2yrjq/kalma...