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
Hello, I've been trying to set up a comparison code using track fusion algorithm between Kalman and particle filters.
The track fusion seems working fine using the tracks obtained with the Kalman filter, but in the case of Particle filter there is an incompatibility issue between the Gaussian detections and the ParticleStateUpdate, in particular using Tracks2GaussianDetectionFeeder I got this error from types/detection :
Tracks2GaussianDetectionFeeder is designed for Gaussian based states only, as well as Chernoff Updater being used. Another approach, not currently implemented would be need to fuse ParticleState.
With small modification, it would be possible to take the ParticleState mean and covariance and assume the ParticleState is representing a GaussianState. We could make change to support that.
Hello, I've been trying to set up a comparison code using track fusion algorithm between Kalman and particle filters.
The track fusion seems working fine using the tracks obtained with the Kalman filter, but in the case of Particle filter there is an incompatibility issue between the Gaussian detections and the ParticleStateUpdate, in particular using
Tracks2GaussianDetectionFeeder
I got this error from types/detection :Example using the kalman filter: here
Example using the Particle filter: here
Thanks for any input on this issue
The text was updated successfully, but these errors were encountered: