Skip to content
Snippets Groups Projects
Commit a18a5f47 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

doc

parent 71b42751
No related branches found
No related tags found
2 merge requests!28release after RAL,!27After 2nd RAL submission
......@@ -157,10 +157,13 @@ bool ProcessorTrackerGnss::voteForKeyFrame() const
return true;
}
// known features
/* KNOWN FEATURES
* If tracked sats are lower than minimum (min_features_for_keyframe), a KF in last will be useful
* if it allows to add more satellites (untracked features in last is not empty)
*/
WOLF_DEBUG("Nbr. of active feature tracks: " , known_features_incoming_.size() );
if (known_features_incoming_.size() < params_tracker_feature_->min_features_for_keyframe
and !untracked_last_features_.empty())
and not untracked_last_features_.empty() )
{
WOLF_INFO( "Vote for KF because of too less known_features_incoming and not empty untracked in last" );
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment