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
Commits
53c117d1
There was a problem fetching the pipeline metadata.
Commit
53c117d1
authored
7 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Fix PrcTrkLmkPolyline for the params API regarding time_tol
parent
21f8b0b9
No related branches found
No related tags found
1 merge request
!167
Fix PrcTrkLmkPolyline for the params API regarding time_tol
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/processor_tracker_landmark_polyline.h
+2
-3
2 additions, 3 deletions
src/processor_tracker_landmark_polyline.h
with
2 additions
and
3 deletions
src/processor_tracker_landmark_polyline.h
+
2
−
3
View file @
53c117d1
...
@@ -78,13 +78,12 @@ struct LandmarkPolylineMatch : public LandmarkMatch
...
@@ -78,13 +78,12 @@ struct LandmarkPolylineMatch : public LandmarkMatch
}
}
};
};
struct
ProcessorParamsPolyline
:
public
ProcessorParams
Base
struct
ProcessorParamsPolyline
:
public
ProcessorParams
Tracker
{
{
laserscanutils
::
LineFinderIterativeParams
line_finder_params
;
laserscanutils
::
LineFinderIterativeParams
line_finder_params
;
Scalar
position_error_th
;
Scalar
position_error_th
;
unsigned
int
new_features_th
;
unsigned
int
new_features_th
;
unsigned
int
loop_frames_th
;
unsigned
int
loop_frames_th
;
Scalar
time_tolerance
;
// These values below are constant and defined within the class -- provide a setter or accept them at construction time if you need to configure them
// These values below are constant and defined within the class -- provide a setter or accept them at construction time if you need to configure them
// Scalar aperture_error_th_ = 20.0 * M_PI / 180.; //20 degrees
// Scalar aperture_error_th_ = 20.0 * M_PI / 180.; //20 degrees
...
@@ -205,7 +204,7 @@ class ProcessorTrackerLandmarkPolyline : public ProcessorTrackerLandmark
...
@@ -205,7 +204,7 @@ class ProcessorTrackerLandmarkPolyline : public ProcessorTrackerLandmark
};
};
inline
ProcessorTrackerLandmarkPolyline
::
ProcessorTrackerLandmarkPolyline
(
const
ProcessorParamsPolyline
&
_params
)
:
inline
ProcessorTrackerLandmarkPolyline
::
ProcessorTrackerLandmarkPolyline
(
const
ProcessorParamsPolyline
&
_params
)
:
ProcessorTrackerLandmark
(
"TRACKER LANDMARK POLYLINE"
,
0
,
_params
.
time_tolerance
),
ProcessorTrackerLandmark
(
"TRACKER LANDMARK POLYLINE"
,
_params
.
time_tolerance
,
_params
.
max_new_features
),
line_finder_
(
_params
.
line_finder_params
),
line_finder_
(
_params
.
line_finder_params
),
params_
(
_params
),
params_
(
_params
),
extrinsics_transformation_computed_
(
false
)
extrinsics_transformation_computed_
(
false
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment