bayes-filters-lib icon indicating copy to clipboard operation
bayes-filters-lib copied to clipboard

A flexible, modern, C++ recursive Bayesian estimation library.

Results 31 bayes-filters-lib issues
Sort by recently updated
recently updated
newest added

As per title. @xEnVrE we need to fix this.

✨improvement

At the moment, there is a default implementation of the virtual method `MeasurementModel::getNoiseCovarianceMatrix() const` https://github.com/robotology/bayes-filters-lib/blob/b178460f9a475e4da33c6e849536d9d3a9df5e33/src/BayesFilters/src/MeasurementModel.cpp#L20-L23 If a user implements that method, in a inheriting class, without using the keywords `const`...

👷 maintenance
✨improvement

Many classes have way too much `protected` data member that should probably be moved in `private` scope. See for example `GaussianMixture` and derived classes. cc @xEnVrE

👍 feedback wanted
🚀 enhancement

Hi! I'm using MS VS 2015. I compiled example from test_UKF and started running it. On the following line of code from example file: `std::unique_ptr wna = utils::make_unique(T, tilde_q);` I...

🐞 bug

The `UKFPrediction::predictStep` is the entry point that dispatches to a private implementation of the UKF based on the state model. The dispatch can be driven by the `UKFPrediction::UKFPredictionType` enum class....

✨improvement