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
ceaeb590
Commit
ceaeb590
authored
Feb 16, 2016
by
asantamaria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Range and flow2d seems to work. Range using old IROS model.
parent
3f913f5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
launch/params.yaml
launch/params.yaml
+2
-1
src/eskf_odom_alg_node.cpp
src/eskf_odom_alg_node.cpp
+2
-2
No files found.
launch/params.yaml
View file @
ceaeb590
...
...
@@ -29,7 +29,8 @@ range_std_insidebounds: 0.01
# Flow2d STD values
flow2d_std_outsidebounds
:
[
10.0
,
10.0
]
flow2d_std_insidebounds
:
[
0.15
,
0.15
]
flow2d_focal_length
:
0.016
# Focal length in pixels
flow2d_focal_length
:
73
# Initial Nominal-State vector (p,v,q,ab,wb,g)
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
]
...
...
src/eskf_odom_alg_node.cpp
View file @
ceaeb590
...
...
@@ -308,9 +308,9 @@ void EskfOdomAlgNode::set_px4_reading(const px_comm::OpticalFlow::ConstPtr& msg,
flow
<<
flowx
,
flowy
;
this
->
alg_
.
lock
();
this
->
alg_
.
set_px4_reading
(
msg_time
,
val
,
flow
);
// Set values into filter object
//
this->alg_.set_px4_reading(msg_time, val, flow); // Set values into filter object
this
->
alg_
.
set_range_reading
(
msg_time
,
this
->
gnd_dist_
);
// Set values into filter object
//
this->alg_.set_flow2d_reading(msg_time, flow); // Set values into filter object
this
->
alg_
.
set_flow2d_reading
(
msg_time
,
flow
);
// Set values into filter object
this
->
alg_
.
unlock
();
}
...
...
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