You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a stream of sets of measurements, and an implementation of this library's UKF which filters out the noise in these measurements. The measurements come with confidence scores, indicating how likely the measurements are to be accurate. I would like to improve the UKF output by utilising this information would it be reasonable/efficient to do something like this before every step:
// if score is low, eg. 0.1 then measurement covariance will increase from baseline by a factor of 100
// if score is very high eg. close to 1 then measurement covariance will be approx. baseline
my_ukf.measurement_covariance = measurement_covariance_ / score^2
my_ukf.step(time_step, measurement)
The text was updated successfully, but these errors were encountered:
I have a stream of sets of measurements, and an implementation of this library's UKF which filters out the noise in these measurements. The measurements come with confidence scores, indicating how likely the measurements are to be accurate. I would like to improve the UKF output by utilising this information would it be reasonable/efficient to do something like this before every step:
The text was updated successfully, but these errors were encountered: