Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
eskf_odometry_ros
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Angel Santamaria-Navarro
C
code
S
state_estimation
eskf_odometry
eskf_odometry_ros
Commits
c4530fe8
Commit
c4530fe8
authored
Feb 15, 2016
by
asantamaria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved everyting inside px4. reduced robot phases.
parent
5aefc037
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
launch/params.yaml
launch/params.yaml
+4
-4
src/eskf_odom_alg_node.cpp
src/eskf_odom_alg_node.cpp
+3
-4
No files found.
launch/params.yaml
View file @
c4530fe8
...
...
@@ -19,9 +19,9 @@ imu_wb_std: [0.0,0.0,0.0]
imu_method
:
discrete
#Sets the data time nature (continous: simulated IMU or discrete: IMU sensor).
# PX4 STD values
px4_std_
landed
:
[
0.1
,
0.001
,
0.001
]
px4_std_
below30cm
:
[
10.0
,
10.0
,
10.0
]
px4_std_30cmto5m
:
[
0.01
,
0.15
,
0.15
]
px4_std_
outsidebounds
:
[
10.0
,
10.0
,
10.0
]
px4_std_
insidebounds
:
[
0.01
,
0.15
,
0.15
]
# Range STD values
range_std_landed
:
0.1
...
...
@@ -35,7 +35,7 @@ flow2d_std_insidebounds: [0.15,0.15]
flow2d_focal_length
:
0.016
# Initial Nominal-State vector (p,v,q,ab,wb,g)
xstate0
:
[
0.0
,
0.0
,
0.
1
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
-0.0005
,
-0.0026
,
-0.0004
,
0.0
,
0.0
,
-9.803057
]
xstate0
:
[
0.0
,
0.0
,
0.
0
,
0.0
,
0.0
,
0.0
,
1.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
-0.0005
,
-0.0026
,
-0.0004
,
0.0
,
0.0
,
-9.803057
]
# Initial Error-State vector (dp,dv,dtheta,dab,dwb,dg)
dxstate0
:
[
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
,
0.0
]
src/eskf_odom_alg_node.cpp
View file @
c4530fe8
...
...
@@ -94,10 +94,9 @@ void EskfOdomAlgNode::read_and_set_ini_params(void)
// PX4 STD values
Sensor
::
px4_params
px4_params
;
px4_params
.
std_landed
=
read_vec
(
"px4_std_landed"
,
3
);
px4_params
.
std_below30cm
=
read_vec
(
"px4_std_below30cm"
,
3
);
px4_params
.
std_30cmto5m
=
read_vec
(
"px4_std_30cmto5m"
,
3
);
px4_params
.
std
=
px4_params
.
std_landed
;
// Considering initially landed
px4_params
.
std_outsidebounds
=
read_vec
(
"px4_std_outsidebounds"
,
3
);
px4_params
.
std_insidebounds
=
read_vec
(
"px4_std_insidebounds"
,
3
);
px4_params
.
std
=
px4_params
.
std_outsidebounds
;
// Range STD values
Sensor
::
range_params
range_params
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment