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
2872b5b1
Commit
2872b5b1
authored
Feb 06, 2016
by
asantamaria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TAG: Working as previous tag. Cleaned some functions and improved set_obs_phase
parent
cac4131b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
src/eskf_odom_alg.cpp
src/eskf_odom_alg.cpp
+0
-9
No files found.
src/eskf_odom_alg.cpp
View file @
2872b5b1
...
...
@@ -3,10 +3,6 @@
EskfOdomAlgorithm
::
EskfOdomAlgorithm
(
void
)
{
pthread_mutex_init
(
&
this
->
access_
,
NULL
);
// Set initial robot phase as landed
this
->
filter_
.
set_robot_phase
(
Robot
::
LANDED
);
this
->
filter_
.
print_robot_phase
();
}
EskfOdomAlgorithm
::~
EskfOdomAlgorithm
(
void
)
...
...
@@ -39,11 +35,6 @@ void EskfOdomAlgorithm::set_obs_phase(const bool& flying, const double& gnd_dist
this
->
filter_
.
set_obs_phase
(
flying
,
gnd_dist
);
}
// void EskfOdomAlgorithm::set_obs_phase(const bool& flying)
// {
// this->filter_.set_obs_phase(flying);
// }
void
EskfOdomAlgorithm
::
set_imu_reading
(
const
double
&
t
,
const
Eigen
::
Vector3d
&
a
,
const
Eigen
::
Vector3d
&
w
)
{
this
->
filter_
.
set_imu_reading
(
t
,
a
,
w
);
...
...
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