-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Labels
Description
There are three different forms of data association:
- NN
- JPDA
- NNJPDA
A quick look at https://github.com/LCAS/bayestracking/blob/master/include/bayes_tracking/multitracker.h#L220 and https://github.com/LCAS/bayestracking/blob/master/include/bayes_tracking/multitracker.h#L263 suggests that actually JPDA is used if the user specifies that NNJPDA should be used. Since the JPDA case is not covered the tracker will out put ###### Unknown association algorithm: 1 ##### if JPDA is selected.
If I am right a simple change of https://github.com/LCAS/bayestracking/blob/master/include/bayes_tracking/multitracker.h#L220 to if (alg == JPDA) should do the trick.
Reactions are currently unavailable