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
73c66fc6
Commit
73c66fc6
authored
5 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Plain Diff
Merge branch 'devel' into 256-new-data-structure-for-storing-stateblocks
parents
01ac4678
26c15b59
No related branches found
Branches containing commit
No related tags found
1 merge request
!323
Resolve "New data structure for storing stateblocks"
Pipeline
#4730
passed
5 years ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hello_wolf/processor_range_bearing.cpp
+1
-1
1 addition, 1 deletion
hello_wolf/processor_range_bearing.cpp
hello_wolf/sensor_range_bearing.cpp
+1
-1
1 addition, 1 deletion
hello_wolf/sensor_range_bearing.cpp
include/core/yaml/parser_yaml.hpp
+2
-0
2 additions, 0 deletions
include/core/yaml/parser_yaml.hpp
with
4 additions
and
2 deletions
hello_wolf/processor_range_bearing.cpp
+
1
−
1
View file @
73c66fc6
...
...
@@ -15,7 +15,7 @@ namespace wolf
{
ProcessorRangeBearing
::
ProcessorRangeBearing
(
ProcessorParamsBasePtr
_params
)
:
ProcessorBase
(
"
RANGE BEARING
"
,
_params
)
ProcessorBase
(
"
ProcessorRangeBearing
"
,
_params
)
{
//
}
...
...
This diff is collapsed.
Click to expand it.
hello_wolf/sensor_range_bearing.cpp
+
1
−
1
View file @
73c66fc6
...
...
@@ -14,7 +14,7 @@ namespace wolf
WOLF_PTR_TYPEDEFS
(
SensorRangeBearing
);
SensorRangeBearing
::
SensorRangeBearing
(
const
Eigen
::
VectorXs
&
_extrinsics
,
const
Eigen
::
Vector2s
&
_noise_std
)
:
SensorBase
(
"
RANGE BEARING
"
,
SensorBase
(
"
SensorRangeBearing
"
,
std
::
make_shared
<
StateBlock
>
(
_extrinsics
.
head
<
2
>
(),
true
),
std
::
make_shared
<
StateAngle
>
(
_extrinsics
(
2
),
true
),
nullptr
,
...
...
This diff is collapsed.
Click to expand it.
include/core/yaml/parser_yaml.hpp
+
2
−
0
View file @
73c66fc6
...
...
@@ -355,6 +355,8 @@ void ParserYAML::walkTreeR(YAML::Node n, std::vector<std::string>& tags, std::st
}
break
;
}
case
YAML
::
NodeType
::
Null
:
break
;
default
:
assert
(
1
==
0
&&
"Unsupported node Type at walkTreeR."
);
break
;
...
...
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