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

Merge branch 'feature/processing_step_bug' into 'devel'

Bug fixed in computeProcessingStep()

See merge request mobile_robotics/wolf!241
parents 2547a723 9cd3ed4d
No related branches found
No related tags found
1 merge request!241Bug fixed in computeProcessingStep()
Pipeline #2479 passed
...@@ -596,7 +596,7 @@ PackKeyFramePtr ProcessorMotion::computeProcessingStep() ...@@ -596,7 +596,7 @@ PackKeyFramePtr ProcessorMotion::computeProcessingStep()
// throw std::runtime_error("Pack's KF and origin's KF have matching time stamps (i.e. below time tolerances)"); // throw std::runtime_error("Pack's KF and origin's KF have matching time stamps (i.e. below time tolerances)");
processing_step_ = RUNNING_WITH_PACK_ON_ORIGIN; processing_step_ = RUNNING_WITH_PACK_ON_ORIGIN;
} }
else if (pack->key_frame->getTimeStamp() < origin_ptr_->getTimeStamp() - params_motion_->time_tolerance) else if (pack->key_frame->getTimeStamp() < origin_ptr_->getTimeStamp())
processing_step_ = RUNNING_WITH_PACK_BEFORE_ORIGIN; processing_step_ = RUNNING_WITH_PACK_BEFORE_ORIGIN;
else else
......
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