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
!301
Resolve "Work on const / non-const in wolf base classes"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Work on const / non-const in wolf base classes"
184-work-on-const-non-const-in-wolf-base-classes
into
devel
Overview
5
Commits
13
Pipelines
10
Changes
34
Merged
Joaquim Casals Buñuel
requested to merge
184-work-on-const-non-const-in-wolf-base-classes
into
devel
5 years ago
Overview
5
Commits
13
Pipelines
10
Changes
34
Expand
Closes
#184 (closed)
Edited
5 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Compare
devel
version 7
329e9269
5 years ago
version 6
0da54d2b
5 years ago
version 5
b8d19c9c
5 years ago
version 4
9f55add5
5 years ago
version 3
364e1ec0
5 years ago
version 2
e5bc2c42
5 years ago
version 1
a124bc6b
5 years ago
devel (base)
and
latest version
latest version
329e9269
13 commits,
5 years ago
version 7
329e9269
13 commits,
5 years ago
version 6
0da54d2b
12 commits,
5 years ago
version 5
b8d19c9c
11 commits,
5 years ago
version 4
9f55add5
10 commits,
5 years ago
version 3
364e1ec0
9 commits,
5 years ago
version 2
e5bc2c42
8 commits,
5 years ago
version 1
a124bc6b
7 commits,
5 years ago
34 files
+
184
−
185
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
34
Search (e.g. *.vue) (Ctrl+P)
hello_wolf/processor_range_bearing.h
+
3
−
3
Options
@@ -56,9 +56,9 @@ class ProcessorRangeBearing : public ProcessorBase
// Implementation of pure virtuals from ProcessorBase
virtual
void
processCapture
(
CaptureBasePtr
_capture
)
override
;
virtual
void
processKeyFrame
(
FrameBasePtr
_keyframe_ptr
,
const
Scalar
&
_time_tol_other
)
override
{};
virtual
bool
triggerInCapture
(
CaptureBasePtr
)
override
{
return
true
;};
virtual
bool
triggerInKeyFrame
(
FrameBasePtr
_keyframe_ptr
,
const
Scalar
&
_time_tol_other
)
override
{
return
false
;}
virtual
bool
voteForKeyFrame
()
override
{
return
false
;}
virtual
bool
triggerInCapture
(
CaptureBasePtr
)
const
override
{
return
true
;};
virtual
bool
triggerInKeyFrame
(
FrameBasePtr
_keyframe_ptr
,
const
Scalar
&
_time_tol_other
)
const
override
{
return
false
;}
virtual
bool
voteForKeyFrame
()
const
override
{
return
false
;}
private
:
// control variables
Loading