Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
laser_scan_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
labrobotica
algorithms
laser_scan_utils
Merge requests
!4
Resolve "Implementation of Falko lib"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Implementation of Falko lib"
26-implementation-of-falko-lib
into
master
Overview
0
Commits
102
Pipelines
0
Changes
3
Merged
Sergi Pujol Badell
requested to merge
26-implementation-of-falko-lib
into
master
4 years ago
Overview
0
Commits
102
Pipelines
0
Changes
3
Expand
Closes
#26 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
c19c19a9
Prev
Next
Show latest version
3 files
+
39
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
c19c19a9
added gtest for findLoopClosure function
· c19c19a9
Sergi Pujol
authored
4 years ago
src/loop_closure_falko.cpp
+
4
−
2
Options
@@ -30,11 +30,11 @@ namespace laserscanutils{
matcher_
.
setDistanceThreshold
(
0.1
);
}
/*
// DESTRUCTOR
template <typename D,typename Extr, typename M>
loopClosureFalko<D,Extr,M>::~loopClosureFalko(){}
*/
template
<
typename
D
,
typename
Extr
,
typename
M
>
std
::
shared_ptr
<
falkolib
::
LaserScan
>
loopClosureFalko
<
D
,
Extr
,
M
>::
convert2LaserScanFALKO
(
LaserScan
&
scan
,
LaserScanParams
&
scanParams
){
auto
scanFALKO
=
std
::
make_shared
<
falkolib
::
LaserScan
>
(
scanParams
.
angle_min_
,
scanParams
.
angle_max_
,
scan
.
ranges_raw_
.
size
());
@@ -76,6 +76,8 @@ namespace laserscanutils{
*/
//void findLoopClosure(std::list<sceneFalko>& scenes, const cornerScene newScene){}
//Explicitly compile all the templates
template
class
loopClosureFalko
<
bsc
,
bscExtractor
,
NNMatcher
>;
}
Loading