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
adfbc87a
Commit
adfbc87a
authored
7 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Cosmetics
parent
6a797869
No related branches found
No related tags found
1 merge request
!143
Imu gtests
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/gtest_imu_tools.cpp
+13
-13
13 additions, 13 deletions
src/test/gtest_imu_tools.cpp
with
13 additions
and
13 deletions
src/test/gtest_imu_tools.cpp
+
13
−
13
View file @
adfbc87a
...
@@ -462,7 +462,7 @@ TEST(IMU_tools, delta_correction)
...
@@ -462,7 +462,7 @@ TEST(IMU_tools, delta_correction)
ASSERT_MATRIX_APPROX
(
diff
(
Delta_preint
,
Delta_corr
),
step
,
1e-5
);
ASSERT_MATRIX_APPROX
(
diff
(
Delta_preint
,
Delta_corr
),
step
,
1e-5
);
}
}
TEST
(
IMU_tools
,
full_delta
)
TEST
(
IMU_tools
,
full_delta
_residual
)
{
{
VectorXs
x1
(
10
),
x2
(
10
);
VectorXs
x1
(
10
),
x2
(
10
);
VectorXs
Delta
(
10
),
Delta_preint
(
10
),
Delta_corr
(
10
);
VectorXs
Delta
(
10
),
Delta_preint
(
10
),
Delta_corr
(
10
);
...
@@ -475,9 +475,9 @@ TEST(IMU_tools, full_delta)
...
@@ -475,9 +475,9 @@ TEST(IMU_tools, full_delta)
Quaternions
q0
;
q0
.
setIdentity
();
Quaternions
q0
;
q0
.
setIdentity
();
x1
<<
0
,
0
,
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
;
x1
<<
0
,
0
,
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
;
//
motion << .3, .2, .1, .1, .2, .3; // acc and gyro
motion
<<
.3
,
.2
,
.1
,
.1
,
.2
,
.3
;
// acc and gyro
// motion << .3, .2, .1, .0, .0, .0; // only acc
// motion << .3, .2, .1, .0, .0, .0; // only acc
motion
<<
.0
,
.0
,
.0
,
.1
,
.2
,
.3
;
// only gyro
//
motion << .0, .0, .0, .1, .2, .3; // only gyro
bias
<<
0.01
,
0.02
,
0.003
,
0.002
,
0.005
,
0.01
;
bias
<<
0.01
,
0.02
,
0.003
,
0.002
,
0.005
,
0.01
;
bias_null
<<
0
,
0
,
0
,
0
,
0
,
0
;
bias_null
<<
0
,
0
,
0
,
0
,
0
,
0
;
// bias_preint << 0.003, 0.002, 0.001, 0.001, 0.002, 0.003;
// bias_preint << 0.003, 0.002, 0.001, 0.001, 0.002, 0.003;
...
@@ -487,30 +487,23 @@ TEST(IMU_tools, full_delta)
...
@@ -487,30 +487,23 @@ TEST(IMU_tools, full_delta)
// preintegration with no bias
// preintegration with no bias
Delta_real
=
integrateDelta
(
N
,
q0
,
motion
,
bias_null
,
bias_null
,
dt
);
Delta_real
=
integrateDelta
(
N
,
q0
,
motion
,
bias_null
,
bias_null
,
dt
);
WOLF_TRACE
(
"Delta real: "
,
Delta_real
.
transpose
());
// final state
// final state
x2
=
composeOverState
(
x1
,
Delta_real
,
1000
*
dt
);
x2
=
composeOverState
(
x1
,
Delta_real
,
1000
*
dt
);
WOLF_TRACE
(
"x2: "
,
x2
.
transpose
());
// preintegration with the correct bias
// preintegration with the correct bias
Delta
=
integrateDelta
(
N
,
q0
,
motion
,
bias
,
bias
,
dt
);
Delta
=
integrateDelta
(
N
,
q0
,
motion
,
bias
,
bias
,
dt
);
WOLF_TRACE
(
"Delta: "
,
Delta
.
transpose
());
ASSERT_MATRIX_APPROX
(
Delta
,
Delta_real
,
1e-4
);
ASSERT_MATRIX_APPROX
(
Delta
,
Delta_real
,
1e-4
);
// preintegration with wrong bias
// preintegration with wrong bias
Delta_preint
=
integrateDelta
(
N
,
q0
,
motion
,
bias
,
bias_preint
,
dt
,
J_b
);
Delta_preint
=
integrateDelta
(
N
,
q0
,
motion
,
bias
,
bias_preint
,
dt
,
J_b
);
WOLF_TRACE
(
"Delta pre: "
,
Delta_preint
.
transpose
());
WOLF_TRACE
(
"Jac bias:
\n
"
,
J_b
);
// compute correction step
// compute correction step
Vector9s
step
=
J_b
*
(
bias
-
bias_preint
);
Vector9s
step
=
J_b
*
(
bias
-
bias_preint
);
WOLF_TRACE
(
"Delta step: "
,
step
.
transpose
());
// correct preintegrated delta
// correct preintegrated delta
Delta_corr
=
plus
(
Delta_preint
,
step
);
Delta_corr
=
plus
(
Delta_preint
,
step
);
WOLF_TRACE
(
"Delta cor: "
,
Delta_corr
.
transpose
());
// Corrected delta should match real delta
// Corrected delta should match real delta
ASSERT_MATRIX_APPROX
(
Delta_real
,
Delta_corr
,
1e-3
);
ASSERT_MATRIX_APPROX
(
Delta_real
,
Delta_corr
,
1e-3
);
...
@@ -520,20 +513,17 @@ TEST(IMU_tools, full_delta)
...
@@ -520,20 +513,17 @@ TEST(IMU_tools, full_delta)
// expected delta
// expected delta
Delta_exp
=
betweenStates
(
x1
,
x2
,
N
*
dt
);
Delta_exp
=
betweenStates
(
x1
,
x2
,
N
*
dt
);
WOLF_TRACE
(
"Delta exp: "
,
Delta_exp
.
transpose
());
ASSERT_MATRIX_APPROX
(
Delta_exp
,
Delta_corr
,
1e-3
);
ASSERT_MATRIX_APPROX
(
Delta_exp
,
Delta_corr
,
1e-3
);
// compute diff between expected and corrected
// compute diff between expected and corrected
Matrix
<
Scalar
,
9
,
9
>
J_err_exp
,
J_err_corr
;
Matrix
<
Scalar
,
9
,
9
>
J_err_exp
,
J_err_corr
;
diff
(
Delta_exp
,
Delta_corr
,
Delta_err
,
J_err_exp
,
J_err_corr
);
diff
(
Delta_exp
,
Delta_corr
,
Delta_err
,
J_err_exp
,
J_err_corr
);
WOLF_TRACE
(
"Delta err: "
,
Delta_err
.
transpose
());
ASSERT_MATRIX_APPROX
(
Delta_err
,
Vector9s
::
Zero
(),
1e-3
);
ASSERT_MATRIX_APPROX
(
Delta_err
,
Vector9s
::
Zero
(),
1e-3
);
// compute error between expected and preintegrated
// compute error between expected and preintegrated
Delta_err
=
diff
(
Delta_preint
,
Delta_exp
);
Delta_err
=
diff
(
Delta_preint
,
Delta_exp
);
WOLF_TRACE
(
"Delta err exp-pre: "
,
Delta_err
.
transpose
());
// diff between preint and corrected deltas should be the jacobian-computed step
// diff between preint and corrected deltas should be the jacobian-computed step
ASSERT_MATRIX_APPROX
(
diff
(
Delta_preint
,
Delta_corr
),
step
,
1e-3
);
ASSERT_MATRIX_APPROX
(
diff
(
Delta_preint
,
Delta_corr
),
step
,
1e-3
);
...
@@ -544,6 +534,16 @@ TEST(IMU_tools, full_delta)
...
@@ -544,6 +534,16 @@ TEST(IMU_tools, full_delta)
* residual = diff(D_preint, D_exp) - J_bias * (bias - bias_preint)
* residual = diff(D_preint, D_exp) - J_bias * (bias - bias_preint)
*/
*/
// WOLF_TRACE("Delta real: ", Delta_real.transpose());
// WOLF_TRACE("x2: ", x2.transpose());
// WOLF_TRACE("Delta: ", Delta.transpose());
// WOLF_TRACE("Delta pre: ", Delta_preint.transpose());
// WOLF_TRACE("Jac bias: \n", J_b);
// WOLF_TRACE("Delta step: ", step.transpose());
// WOLF_TRACE("Delta cor: ", Delta_corr.transpose());
// WOLF_TRACE("Delta exp: ", Delta_exp.transpose());
// WOLF_TRACE("Delta err: ", Delta_err.transpose());
// WOLF_TRACE("Delta err exp-pre: ", Delta_err.transpose());
}
}
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
...
...
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