Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!431
Resolve "Add time_tolerance field in Frame and remove PackKeyFrame"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add time_tolerance field in Frame and remove PackKeyFrame"
420-add-time_tolerance-field-in-frame-and-remove-packkeyframe
into
devel
Overview
0
Commits
12
Pipelines
10
Changes
6
Merged
Joan Solà Ortega
requested to merge
420-add-time_tolerance-field-in-frame-and-remove-packkeyframe
into
devel
3 years ago
Overview
0
Commits
12
Pipelines
10
Changes
6
Expand
Closes
#420 (closed)
Edited
3 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Viewing commit
6324bd8d
Prev
Next
Show latest version
6 files
+
41
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
6324bd8d
Improve usages of time_tolerance in Frame
· 6324bd8d
Joan Solà Ortega
authored
3 years ago
include/core/processor/processor_base.h
+
2
−
2
Options
@@ -318,13 +318,13 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
* It stores the new KF in buffer_frame_ and calls triggerInKF()
*
*/
void
keyFrameCallback
(
FrameBasePtr
_keyframe
_ptr
,
const
double
&
_time_tol_other
);
void
keyFrameCallback
(
FrameBasePtr
_keyframe
,
const
double
&
_time_tol_other
);
/**\brief notify a new capture
*
* It stores the new capture in buffer_capture_ and calls triggerInCapture()
*/
void
captureCallback
(
CaptureBasePtr
_capture
_ptr
);
void
captureCallback
(
CaptureBasePtr
_capture
);
SensorBasePtr
getSensor
()
const
;
private:
Loading