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
6185351d
There was a problem fetching the pipeline metadata.
Commit
6185351d
authored
7 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Remove constructor and destructor from Params structs
parent
95e78928
No related branches found
No related tags found
1 merge request
!170
Processors api
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/processor_IMU.h
+0
-12
0 additions, 12 deletions
src/processor_IMU.h
src/processor_loopclosure_base.h
+1
-1
1 addition, 1 deletion
src/processor_loopclosure_base.h
with
1 addition
and
13 deletions
src/processor_IMU.h
+
0
−
12
View file @
6185351d
...
@@ -17,18 +17,6 @@ struct ProcessorParamsIMU : public ProcessorParamsBase
...
@@ -17,18 +17,6 @@ struct ProcessorParamsIMU : public ProcessorParamsBase
Scalar
dist_traveled
=
5
;
Scalar
dist_traveled
=
5
;
Scalar
angle_turned
=
0.5
;
Scalar
angle_turned
=
0.5
;
bool
voting_active
=
false
;
//IMU will not vote for key Frames to be created
bool
voting_active
=
false
;
//IMU will not vote for key Frames to be created
// ProcessorParamsIMU() :
// max_time_span(0.5),
// max_buff_length(10),
// dist_traveled(5),
// angle_turned(.5),
// voting_active(false)
// {
// type = "IMU";
// name = "";
// }
};
};
WOLF_PTR_TYPEDEFS
(
ProcessorIMU
);
WOLF_PTR_TYPEDEFS
(
ProcessorIMU
);
...
...
This diff is collapsed.
Click to expand it.
src/processor_loopclosure_base.h
+
1
−
1
View file @
6185351d
...
@@ -8,7 +8,7 @@ namespace wolf{
...
@@ -8,7 +8,7 @@ namespace wolf{
struct
ProcessorParamsLoopClosure
:
public
ProcessorParamsBase
struct
ProcessorParamsLoopClosure
:
public
ProcessorParamsBase
{
{
virtual
~
ProcessorParamsLoopClosure
()
=
default
;
//
virtual ~ProcessorParamsLoopClosure() = default;
// add neccesery parameters for loop closure initialisation here and initialize
// add neccesery parameters for loop closure initialisation here and initialize
// them in constructor
// them in constructor
...
...
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