kalman
kalman copied to clipboard
Header-only C++11 Kalman Filtering Library (EKF, UKF) based on Eigen3
The P -= K * H * P step should possibly cause numerical issues that result in an asymmetric and non-positive-definite covariance matrix, right? Shouldn't the covariance matrix be re-symmetrized...
Dear @mherb, I am trying to use your helpful kalman filter library for humanoid motion state estimation, based on ukf. And my state variable is center of mass position and...
https://arxiv.org/abs/1107.1119 Consider to use https://github.com/artivis/manif
Hi, Thanks very much for this great library. Just wondering if this library contains regular Kalman filter for linear systems? Cheers
The current implementation is ``` ... T L = T(State::RowsAtCompileTime); lambda = alpha * alpha * ( L + kappa ) - L; gamma = std::sqrt( L + lambda );...
@HipsterSloth and I are working on a SRUKF for sensor fusion comprising a 9-DOF IMU and optical tracker. (It's for PC software using the playstation move controller). Our state-vector is...
Hi Markus! As the latest release of googletest supports `CMP0048` correctly, we _can_ finally upgrade to CMake 3.0. However, [`trusty` supports only CMake 2.8](https://packages.ubuntu.com/trusty/cmake), so I'd say it's your call...