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
!290
Resolve "ProcessorLoopClosureBase class"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "ProcessorLoopClosureBase class"
220-processor-loop-closure-base
into
devel
Overview
6
Commits
23
Pipelines
2
Changes
2
Merged
Joan Vallvé Navarro
requested to merge
220-processor-loop-closure-base
into
devel
5 years ago
Overview
6
Commits
23
Pipelines
2
Changes
2
Expand
Closes
#220 (closed)
0
0
Merge request reports
Viewing commit
adcf4120
Prev
Next
Show latest version
2 files
+
20
−
29
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
adcf4120
Split decisions of searching for LC and creating features
· adcf4120
PierreGtch
authored
6 years ago
include/core/processor/processor_loopclosure_base2.h
+
6
−
11
Options
@@ -21,6 +21,7 @@ struct ProcessorParamsLoopClosure2 : public ProcessorParamsBase
*
* This is an abstract class.
* + You must define the following classes :
* - voteComputeFeatures()
* - voteSearchLoopClosure()
* - computeFeatures()
* - findLoopCandidate()
@@ -63,21 +64,15 @@ public:
protected
:
/** \brief Called by process(). Tells if
processLoopClosure
will be called
/** \brief Called by process(). Tells if
computeFeatures()
will be called
*/
virtual
bool
vote
SearchLoopClos
ure
(
CaptureBasePtr
_incoming_ptr
)
=
0
;
virtual
bool
vote
ComputeFeat
ure
s
(
CaptureBasePtr
_incoming_ptr
)
=
0
;
/** \brief
Tries to close a loop
/** \brief
Called by process(). Tells if findLoopCandidate() and createFactors() will be called
*
* this method is called in process() if voteSearchLoopClosure retruns true
* this method uses :
* - selectPairKC()
* - computeFeatures()
* - findLoopCandidate()
* - validateLoop()
* - createFactors()
* WARNING : A LC can be searched only when voteComputeFeatures() return true
*/
v
oid
processLoopClosure
(
void
)
;
v
irtual
bool
voteSearchLoopClosure
(
CaptureBasePtr
_incoming_ptr
)
=
0
;
/** \brief returns a KeyFrame-Capture pair compatible together (selected from the buffers)
*
Loading