Skip to content
Snippets Groups Projects
Commit db27be6c authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Fix cout of feature match

parent a5444a62
No related branches found
No related tags found
1 merge request!157Kfpackmanager
This commit is part of merge request !157. Comments created here will be created in the context of that merge request.
...@@ -97,10 +97,10 @@ void ProcessorTrackerFeature::resetDerived() ...@@ -97,10 +97,10 @@ void ProcessorTrackerFeature::resetDerived()
std::cout << "\tincoming 2 last: " << matches_last_from_incoming_.size() << std::endl; std::cout << "\tincoming 2 last: " << matches_last_from_incoming_.size() << std::endl;
for (auto match : matches_last_from_incoming_) for (auto match : matches_last_from_incoming_)
std::cout << "inc -> last: \t\t" << match.second->feature_ptr_->id() << " <- " << match.first->id() << std::endl; std::cout << "last <- inc: \t\t" << match.second->feature_ptr_->id() << " <- " << match.first->id() << std::endl;
std::cout << "\tlast 2 origin: " << std::endl; std::cout << "\tlast 2 origin: " << std::endl;
for (auto match : matches_origin_from_last_) for (auto match : matches_origin_from_last_)
std::cout << "ori <- last: \t\t" << match.second->feature_ptr_->id() << match.first->id() << std::endl; std::cout << "ori <- last: \t\t" << match.second->feature_ptr_->id() << " <- " << match.first->id() << std::endl;
matches_origin_from_last_ = std::move(matches_last_from_incoming_); matches_origin_from_last_ = std::move(matches_last_from_incoming_);
......
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