Merging ProcessorTrackerLandmark and ProcessorTrackerFeature?
Created by: joanvallve
As we designed the ProcessorTracker inheritance, there are two different cases: landmarks and features:
- Landmark: The search is done in the map (landmarks), so it is able to close loops but it is not actually tracking so big effort on projecting landmarks in the measurement space.
- Features: The search is done in the last capture features, so it isn't able to close loops. But it is faster since few candidates and may not require projecting the covariances..
In my opinion it is a suboptimal approach. We can take profit of both advantages by implementing a mix of both right?
The landmark processor could be tracking the features instead of projecting all landmarks and the feature processor need for some loop closure mechanism..