| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation, | 
					
						
							|  |  |  |  * Atlanta, Georgia 30332-0415 | 
					
						
							|  |  |  |  * All Rights Reserved | 
					
						
							|  |  |  |  * Authors: Frank Dellaert, et al. (see THANKS for the full author list) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * See LICENSE for the license information | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file    testInertialNavFactor_GlobalVelocity.cpp | 
					
						
							|  |  |  |  * @brief   Unit test for the InertialNavFactor_GlobalVelocity | 
					
						
							|  |  |  |  * @author  Vadim Indelman, Stephen Williams | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							|  |  |  | #include <CppUnitLite/TestHarness.h>
 | 
					
						
							| 
									
										
										
										
											2013-04-10 04:04:10 +08:00
										 |  |  | #include <gtsam/navigation/ImuBias.h>
 | 
					
						
							| 
									
										
										
										
											2013-08-14 05:04:31 +08:00
										 |  |  | #include <gtsam_unstable/slam/InertialNavFactor_GlobalVelocity.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | #include <gtsam/geometry/Pose3.h>
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/Values.h>
 | 
					
						
							| 
									
										
										
										
											2013-06-06 23:36:11 +08:00
										 |  |  | #include <gtsam/inference/Key.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | #include <gtsam/base/numericalDerivative.h>
 | 
					
						
							| 
									
										
										
										
											2013-08-09 04:45:44 +08:00
										 |  |  | #include <gtsam/base/TestableAssertions.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  | using namespace std::placeholders; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | Rot3 world_R_ECEF(0.31686, 0.51505, 0.79645, 0.85173, -0.52399, 0, 0.41733, | 
					
						
							|  |  |  |     0.67835, -0.60471); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | static const Vector3 world_g(0.0, 0.0, 9.81); | 
					
						
							|  |  |  | static const Vector3 world_rho(0.0, -1.5724e-05, 0.0); // NED system
 | 
					
						
							|  |  |  | static const Vector3 ECEF_omega_earth(0.0, 0.0, 7.292115e-5); | 
					
						
							|  |  |  | static const Vector3 world_omega_earth = world_R_ECEF.matrix() | 
					
						
							|  |  |  |     * ECEF_omega_earth; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | Pose3 predictionErrorPose(const Pose3& p1, const Vector3& v1, | 
					
						
							|  |  |  |     const imuBias::ConstantBias& b1, const Pose3& p2, const Vector3& v2, | 
					
						
							|  |  |  |     const InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias>& factor) { | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   return Pose3::Expmap(factor.evaluateError(p1, v1, b1, p2, v2).head(6)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | Vector predictionErrorVel(const Pose3& p1, const Vector3& v1, | 
					
						
							|  |  |  |     const imuBias::ConstantBias& b1, const Pose3& p2, const Vector3& v2, | 
					
						
							|  |  |  |     const InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias>& factor) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   return factor.evaluateError(p1, v1, b1, p2, v2).tail(3); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, Constructor) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key Pose1(11); | 
					
						
							|  |  |  |   Key Pose2(12); | 
					
						
							|  |  |  |   Key Vel1(21); | 
					
						
							|  |  |  |   Key Vel2(22); | 
					
						
							|  |  |  |   Key Bias1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 measurement_acc(0.1, 0.2, 0.4); | 
					
						
							|  |  |  |   Vector3 measurement_gyro(-0.2, 0.5, 0.03); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, Equals) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key Pose1(11); | 
					
						
							|  |  |  |   Key Pose2(12); | 
					
						
							|  |  |  |   Key Vel1(21); | 
					
						
							|  |  |  |   Key Vel2(22); | 
					
						
							|  |  |  |   Key Bias1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 measurement_acc(0.1, 0.2, 0.4); | 
					
						
							|  |  |  |   Vector3 measurement_gyro(-0.2, 0.5, 0.03); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model); | 
					
						
							|  |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> g( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   CHECK(assert_equal(f, g, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, Predict) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // First test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc(Vector3(0.1, 0.2, 0.3 - 9.81)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(0.0, 0.0, 0.0)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Pose3 Pose1(Rot3(), Point3(2.00, 1.00, 3.00)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.50, -0.50, 0.40)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  |   Pose3 expectedPose2(Rot3(), Point3(2.05, 0.95, 3.04)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 expectedVel2(Vector3(0.51, -0.48, 0.43)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 actualPose2; | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 actualVel2; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   f.predict(Pose1, Vel1, Bias1, actualPose2, actualVel2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   CHECK(assert_equal(expectedPose2, actualPose2, 1e-5)); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   CHECK(assert_equal((Vector)expectedVel2, actualVel2, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorPosVel) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   // First test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc(Vector3(0.1, 0.2, 0.3 - 9.81)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(0.0, 0.0, 0.0)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Pose3 Pose1(Rot3(), Point3(2.00, 1.00, 3.00)); | 
					
						
							|  |  |  |   Pose3 Pose2(Rot3(), Point3(2.05, 0.95, 3.04)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.50, -0.50, 0.40)); | 
					
						
							|  |  |  |   Vector3 Vel2(Vector3(0.51, -0.48, 0.43)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorRot) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   // Second test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc(Vector3(0.0, 0.0, 0.0 - 9.81)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(0.1, 0.2, 0.3)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 Pose1(Rot3(), Point3(2.0, 1.0, 3.0)); | 
					
						
							|  |  |  |   Pose3 Pose2(Rot3::Expmap(measurement_gyro * measurement_dt), | 
					
						
							|  |  |  |       Point3(2.0, 1.0, 3.0)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.0, 0.0, 0.0)); | 
					
						
							|  |  |  |   Vector3 Vel2(Vector3(0.0, 0.0, 0.0)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorRotPosVel) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Second test: zero angular motion, some acceleration - generated in matlab
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector measurement_acc( | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |       Vector3(6.501390843381716, -6.763926150509185, -2.300389940090343)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(0.1, 0.2, 0.3)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Rot3 R1(0.487316618, 0.125253866, 0.86419557, 0.580273724, 0.693095498, | 
					
						
							|  |  |  |       -0.427669306, -0.652537293, 0.709880342, 0.265075427); | 
					
						
							|  |  |  |   Point3 t1(2.0, 1.0, 3.0); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Pose3 Pose1(R1, t1); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.5, -0.5, 0.4)); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Rot3 R2(0.473618898, 0.119523052, 0.872582019, 0.609241153, 0.67099888, | 
					
						
							|  |  |  |       -0.422594037, -0.636011287, 0.731761397, 0.244979388); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Point3 t2 = t1 + Point3(Vel1 * measurement_dt); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Pose3 Pose2(R2, t2); | 
					
						
							|  |  |  |   Vector dv = measurement_dt * (R1.matrix() * measurement_acc + world_g); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 Vel2 = Vel1 + dv; | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // TODO: Expected values need to be updated for global velocity version
 | 
					
						
							|  |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ///* VADIM - START ************************************************************************* */
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | //Vector3 predictionRq(const Vector3 angles, const Vector3 q) {
 | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  | //  return (Rot3().RzRyRx(angles) * q);
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //}
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //TEST (InertialNavFactor_GlobalVelocity, Rotation_Deriv ) {
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  | //  Vector3 angles(Vector3(3.001, -1.0004, 2.0005));
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | //  Rot3 R1(Rot3().RzRyRx(angles));
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  | //  Vector3 q(Vector3(5.8, -2.2, 4.105));
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | //  Rot3 qx(0.0, -q[2], q[1],
 | 
					
						
							|  |  |  | //      q[2], 0.0, -q[0],
 | 
					
						
							|  |  |  | //      -q[1], q[0],0.0);
 | 
					
						
							|  |  |  | //  Matrix J_hyp( -(R1*qx).matrix() );
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  | //  Matrix J_expected;
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | //  Vector3 v(predictionRq(angles, q));
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  | //  J_expected = numericalDerivative11<Vector3, Vector3>(std::bind(&predictionRq, std::placeholders::_1, q), angles);
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | //  cout<<"J_hyp"<<J_hyp<<endl;
 | 
					
						
							|  |  |  | //  cout<<"J_expected"<<J_expected<<endl;
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  | //  CHECK( assert_equal(J_expected, J_hyp, 1e-6));
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | //}
 | 
					
						
							|  |  |  | ///* VADIM - END ************************************************************************* */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST (InertialNavFactor_GlobalVelocity, Jacobian ) { | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   double measurement_dt(0.01); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector measurement_acc( | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |       Vector3(6.501390843381716, -6.763926150509185, -2.300389940090343)); | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   Vector measurement_gyro((Vector(3) << 3.14, 3.14 / 2, -3.14).finished()); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> factor( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Rot3 R1(0.487316618, 0.125253866, 0.86419557, 0.580273724, 0.693095498, | 
					
						
							|  |  |  |       -0.427669306, -0.652537293, 0.709880342, 0.265075427); | 
					
						
							|  |  |  |   Point3 t1(2.0, 1.0, 3.0); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Pose3 Pose1(R1, t1); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.5, -0.5, 0.4)); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Rot3 R2(0.473618898, 0.119523052, 0.872582019, 0.609241153, 0.67099888, | 
					
						
							|  |  |  |       -0.422594037, -0.636011287, 0.731761397, 0.244979388); | 
					
						
							|  |  |  |   Point3 t2(2.052670960415706, 0.977252139079380, 2.942482135362800); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   Pose3 Pose2(R2, t2); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 Vel2( | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |       Vector3(0.510000000000000, -0.480000000000000, 0.430000000000000)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Matrix H1_actual, H2_actual, H3_actual, H4_actual, H5_actual; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector ActualErr( | 
					
						
							|  |  |  |       factor.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2, H1_actual, | 
					
						
							|  |  |  |           H2_actual, H3_actual, H4_actual, H5_actual)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Checking for Pose part in the jacobians
 | 
					
						
							|  |  |  |   // ******
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_actualPose(H1_actual.block(0, 0, 6, H1_actual.cols())); | 
					
						
							|  |  |  |   Matrix H2_actualPose(H2_actual.block(0, 0, 6, H2_actual.cols())); | 
					
						
							|  |  |  |   Matrix H3_actualPose(H3_actual.block(0, 0, 6, H3_actual.cols())); | 
					
						
							|  |  |  |   Matrix H4_actualPose(H4_actual.block(0, 0, 6, H4_actual.cols())); | 
					
						
							|  |  |  |   Matrix H5_actualPose(H5_actual.block(0, 0, 6, H5_actual.cols())); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Calculate the Jacobian matrices H1 until H5 using the numerical derivative function
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_expectedPose, H2_expectedPose, H3_expectedPose, H4_expectedPose, | 
					
						
							|  |  |  |       H5_expectedPose; | 
					
						
							|  |  |  |   H1_expectedPose = numericalDerivative11<Pose3, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, std::placeholders::_1, Vel1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose1); | 
					
						
							|  |  |  |   H2_expectedPose = numericalDerivative11<Pose3, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, std::placeholders::_1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel1); | 
					
						
							|  |  |  |   H3_expectedPose = numericalDerivative11<Pose3, imuBias::ConstantBias>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, std::placeholders::_1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Bias1); | 
					
						
							|  |  |  |   H4_expectedPose = numericalDerivative11<Pose3, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, Bias1, std::placeholders::_1, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose2); | 
					
						
							|  |  |  |   H5_expectedPose = numericalDerivative11<Pose3, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, Bias1, Pose2, std::placeholders::_1, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel2); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Verify they are equal for this choice of state
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   CHECK( assert_equal(H1_expectedPose, H1_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H2_expectedPose, H2_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H3_expectedPose, H3_actualPose, 2e-3)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H4_expectedPose, H4_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H5_expectedPose, H5_actualPose, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Checking for Vel part in the jacobians
 | 
					
						
							|  |  |  |   // ******
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_actualVel(H1_actual.block(6, 0, 3, H1_actual.cols())); | 
					
						
							|  |  |  |   Matrix H2_actualVel(H2_actual.block(6, 0, 3, H2_actual.cols())); | 
					
						
							|  |  |  |   Matrix H3_actualVel(H3_actual.block(6, 0, 3, H3_actual.cols())); | 
					
						
							|  |  |  |   Matrix H4_actualVel(H4_actual.block(6, 0, 3, H4_actual.cols())); | 
					
						
							|  |  |  |   Matrix H5_actualVel(H5_actual.block(6, 0, 3, H5_actual.cols())); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Calculate the Jacobian matrices H1 until H5 using the numerical derivative function
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_expectedVel, H2_expectedVel, H3_expectedVel, H4_expectedVel, | 
					
						
							|  |  |  |       H5_expectedVel; | 
					
						
							|  |  |  |   H1_expectedVel = numericalDerivative11<Vector, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, std::placeholders::_1, Vel1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose1); | 
					
						
							|  |  |  |   H2_expectedVel = numericalDerivative11<Vector, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, std::placeholders::_1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel1); | 
					
						
							|  |  |  |   H3_expectedVel = numericalDerivative11<Vector, imuBias::ConstantBias>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, std::placeholders::_1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Bias1); | 
					
						
							|  |  |  |   H4_expectedVel = numericalDerivative11<Vector, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, Bias1, std::placeholders::_1, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose2); | 
					
						
							|  |  |  |   H5_expectedVel = numericalDerivative11<Vector, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, Bias1, Pose2, std::placeholders::_1, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel2); | 
					
						
							| 
									
										
										
										
											2013-10-11 01:52:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Verify they are equal for this choice of state
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   CHECK( assert_equal(H1_expectedVel, H1_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H2_expectedVel, H2_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H3_expectedVel, H3_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H4_expectedVel, H4_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H5_expectedVel, H5_actualVel, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ConstructorWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key Pose1(11); | 
					
						
							|  |  |  |   Key Pose2(12); | 
					
						
							|  |  |  |   Key Vel1(21); | 
					
						
							|  |  |  |   Key Vel2(22); | 
					
						
							|  |  |  |   Key Bias1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc(Vector3(0.1, 0.2, 0.4)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(-0.2, 0.5, 0.03)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(0.0, 0.0, 0.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model, | 
					
						
							|  |  |  |       body_P_sensor); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, EqualsWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key Pose1(11); | 
					
						
							|  |  |  |   Key Pose2(12); | 
					
						
							|  |  |  |   Key Vel1(21); | 
					
						
							|  |  |  |   Key Vel2(22); | 
					
						
							|  |  |  |   Key Bias1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc(Vector3(0.1, 0.2, 0.4)); | 
					
						
							|  |  |  |   Vector measurement_gyro(Vector3(-0.2, 0.5, 0.03)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(0.0, 0.0, 0.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model, | 
					
						
							|  |  |  |       body_P_sensor); | 
					
						
							|  |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> g( | 
					
						
							|  |  |  |       Pose1, Vel1, Bias1, Pose2, Vel2, measurement_acc, measurement_gyro, | 
					
						
							|  |  |  |       measurement_dt, world_g, world_rho, world_omega_earth, model, | 
					
						
							|  |  |  |       body_P_sensor); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   CHECK(assert_equal(f, g, 1e-5)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, PredictWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(1.0, -2.0, 3.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // First test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_gyro(Vector3(0.0, 0.0, 0.0)); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Matrix omega__cross = skewSymmetric(measurement_gyro); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc = Vector3(0.2, 0.1, -0.3 + 9.81) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       + omega__cross * omega__cross | 
					
						
							|  |  |  |           * body_P_sensor.rotation().inverse().matrix() | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  |           * body_P_sensor.translation(); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model, body_P_sensor); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Pose3 Pose1(Rot3(), Point3(2.00, 1.00, 3.00)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.50, -0.50, 0.40)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  |   Pose3 expectedPose2(Rot3(), Point3(2.05, 0.95, 3.04)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 expectedVel2(Vector3(0.51, -0.48, 0.43)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 actualPose2; | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 actualVel2; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   f.predict(Pose1, Vel1, Bias1, actualPose2, actualVel2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   CHECK(assert_equal(expectedPose2, actualPose2, 1e-5)); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   CHECK(assert_equal((Vector)expectedVel2, actualVel2, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorPosVelWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(1.0, -2.0, 3.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // First test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_gyro(Vector3(0.0, 0.0, 0.0)); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Matrix omega__cross = skewSymmetric(measurement_gyro); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc = Vector3(0.2, 0.1, -0.3 + 9.81) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       + omega__cross * omega__cross | 
					
						
							|  |  |  |           * body_P_sensor.rotation().inverse().matrix() | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  |           * body_P_sensor.translation(); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model, body_P_sensor); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Pose3 Pose1(Rot3(), Point3(2.00, 1.00, 3.00)); | 
					
						
							|  |  |  |   Pose3 Pose2(Rot3(), Point3(2.05, 0.95, 3.04)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.50, -0.50, 0.40)); | 
					
						
							|  |  |  |   Vector3 Vel2(Vector3(0.51, -0.48, 0.43)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorRotWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(1.0, -2.0, 3.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Second test: zero angular motion, some acceleration
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_gyro(Vector3(0.2, 0.1, -0.3)); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Matrix omega__cross = skewSymmetric(measurement_gyro); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_acc = Vector3(0.0, 0.0, 0.0 + 9.81) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       + omega__cross * omega__cross | 
					
						
							|  |  |  |           * body_P_sensor.rotation().inverse().matrix() | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  |           * body_P_sensor.translation(); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model, body_P_sensor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Pose3 Pose1(Rot3(), Point3(2.0, 1.0, 3.0)); | 
					
						
							|  |  |  |   Pose3 Pose2( | 
					
						
							|  |  |  |       Rot3::Expmap( | 
					
						
							|  |  |  |           body_P_sensor.rotation().matrix() * measurement_gyro | 
					
						
							|  |  |  |               * measurement_dt), Point3(2.0, 1.0, 3.0)); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.0, 0.0, 0.0)); | 
					
						
							|  |  |  |   Vector3 Vel2(Vector3(0.0, 0.0, 0.0)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST( InertialNavFactor_GlobalVelocity, ErrorRotPosVelWithTransform) { | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(1.0, -2.0, 3.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Second test: zero angular motion, some acceleration - generated in matlab
 | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector measurement_gyro(Vector3(0.2, 0.1, -0.3)); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Matrix omega__cross = skewSymmetric(measurement_gyro); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector measurement_acc = | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |       Vector3(-6.763926150509185, 6.501390843381716, +2.300389940090343) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |           + omega__cross * omega__cross | 
					
						
							|  |  |  |               * body_P_sensor.rotation().inverse().matrix() | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  |               * body_P_sensor.translation(); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> f( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model, body_P_sensor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Rot3 R1(0.487316618, 0.125253866, 0.86419557, 0.580273724, 0.693095498, | 
					
						
							|  |  |  |       -0.427669306, -0.652537293, 0.709880342, 0.265075427); | 
					
						
							|  |  |  |   Point3 t1(2.0, 1.0, 3.0); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 Pose1(R1, t1); | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |   Vector3 Vel1(Vector3(0.5, -0.5, 0.4)); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Rot3 R2(0.473618898, 0.119523052, 0.872582019, 0.609241153, 0.67099888, | 
					
						
							|  |  |  |       -0.422594037, -0.636011287, 0.731761397, 0.244979388); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Point3 t2 = t1+ Point3(Vel1 * measurement_dt); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 Pose2(R2, t2); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector dv = | 
					
						
							|  |  |  |       measurement_dt | 
					
						
							|  |  |  |           * (R1.matrix() * body_P_sensor.rotation().matrix() | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |               * Vector3(-6.763926150509185, 6.501390843381716, +2.300389940090343) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |               + world_g); | 
					
						
							|  |  |  |   Vector3 Vel2 = Vel1 + dv; | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Vector ActualErr(f.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2)); | 
					
						
							| 
									
										
										
										
											2016-04-16 04:54:46 +08:00
										 |  |  |   Vector ExpectedErr(Z_9x1); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // TODO: Expected values need to be updated for global velocity version
 | 
					
						
							|  |  |  |   CHECK(assert_equal(ExpectedErr, ActualErr, 1e-5)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | /* ************************************************************************* */TEST (InertialNavFactor_GlobalVelocity, JacobianWithTransform ) { | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   Key PoseKey1(11); | 
					
						
							|  |  |  |   Key PoseKey2(12); | 
					
						
							|  |  |  |   Key VelKey1(21); | 
					
						
							|  |  |  |   Key VelKey2(22); | 
					
						
							|  |  |  |   Key BiasKey1(31); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   double measurement_dt(0.01); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   SharedGaussian model(noiseModel::Isotropic::Sigma(9, 0.1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Pose3 body_P_sensor(Rot3(0, 1, 0, 1, 0, 0, 0, 0, -1), Point3(1.0, -2.0, 3.0)); // IMU is in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   Vector measurement_gyro((Vector(3) << 3.14 / 2, 3.14, +3.14).finished()); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Matrix omega__cross = skewSymmetric(measurement_gyro); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector measurement_acc = | 
					
						
							| 
									
										
										
										
											2014-11-24 02:22:25 +08:00
										 |  |  |       Vector3(-6.763926150509185, 6.501390843381716, +2.300389940090343) | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |           + omega__cross * omega__cross | 
					
						
							|  |  |  |               * body_P_sensor.rotation().inverse().matrix() | 
					
						
							| 
									
										
										
										
											2016-02-12 16:06:07 +08:00
										 |  |  |               * body_P_sensor.translation(); // Measured in ENU orientation
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   InertialNavFactor_GlobalVelocity<Pose3, Vector3, imuBias::ConstantBias> factor( | 
					
						
							|  |  |  |       PoseKey1, VelKey1, BiasKey1, PoseKey2, VelKey2, measurement_acc, | 
					
						
							|  |  |  |       measurement_gyro, measurement_dt, world_g, world_rho, world_omega_earth, | 
					
						
							|  |  |  |       model, body_P_sensor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Rot3 R1(0.487316618, 0.125253866, 0.86419557, 0.580273724, 0.693095498, | 
					
						
							|  |  |  |       -0.427669306, -0.652537293, 0.709880342, 0.265075427); | 
					
						
							|  |  |  |   Point3 t1(2.0, 1.0, 3.0); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 Pose1(R1, t1); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 Vel1(0.5, -0.5, 0.4); | 
					
						
							|  |  |  |   Rot3 R2(0.473618898, 0.119523052, 0.872582019, 0.609241153, 0.67099888, | 
					
						
							|  |  |  |       -0.422594037, -0.636011287, 0.731761397, 0.244979388); | 
					
						
							|  |  |  |   Point3 t2(2.052670960415706, 0.977252139079380, 2.942482135362800); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   Pose3 Pose2(R2, t2); | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector3 Vel2(0.510000000000000, -0.480000000000000, 0.430000000000000); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  |   imuBias::ConstantBias Bias1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Matrix H1_actual, H2_actual, H3_actual, H4_actual, H5_actual; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Vector ActualErr( | 
					
						
							|  |  |  |       factor.evaluateError(Pose1, Vel1, Bias1, Pose2, Vel2, H1_actual, | 
					
						
							|  |  |  |           H2_actual, H3_actual, H4_actual, H5_actual)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Checking for Pose part in the jacobians
 | 
					
						
							|  |  |  |   // ******
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_actualPose(H1_actual.block(0, 0, 6, H1_actual.cols())); | 
					
						
							|  |  |  |   Matrix H2_actualPose(H2_actual.block(0, 0, 6, H2_actual.cols())); | 
					
						
							|  |  |  |   Matrix H3_actualPose(H3_actual.block(0, 0, 6, H3_actual.cols())); | 
					
						
							|  |  |  |   Matrix H4_actualPose(H4_actual.block(0, 0, 6, H4_actual.cols())); | 
					
						
							|  |  |  |   Matrix H5_actualPose(H5_actual.block(0, 0, 6, H5_actual.cols())); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Calculate the Jacobian matrices H1 until H5 using the numerical derivative function
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_expectedPose, H2_expectedPose, H3_expectedPose, H4_expectedPose, | 
					
						
							|  |  |  |       H5_expectedPose; | 
					
						
							|  |  |  |   H1_expectedPose = numericalDerivative11<Pose3, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, std::placeholders::_1, Vel1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose1); | 
					
						
							|  |  |  |   H2_expectedPose = numericalDerivative11<Pose3, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, std::placeholders::_1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel1); | 
					
						
							|  |  |  |   H3_expectedPose = numericalDerivative11<Pose3, imuBias::ConstantBias>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, std::placeholders::_1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Bias1); | 
					
						
							|  |  |  |   H4_expectedPose = numericalDerivative11<Pose3, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, Bias1, std::placeholders::_1, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose2); | 
					
						
							|  |  |  |   H5_expectedPose = numericalDerivative11<Pose3, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorPose, Pose1, Vel1, Bias1, Pose2, std::placeholders::_1, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel2); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Verify they are equal for this choice of state
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   CHECK( assert_equal(H1_expectedPose, H1_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H2_expectedPose, H2_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H3_expectedPose, H3_actualPose, 2e-3)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H4_expectedPose, H4_actualPose, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H5_expectedPose, H5_actualPose, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Checking for Vel part in the jacobians
 | 
					
						
							|  |  |  |   // ******
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_actualVel(H1_actual.block(6, 0, 3, H1_actual.cols())); | 
					
						
							|  |  |  |   Matrix H2_actualVel(H2_actual.block(6, 0, 3, H2_actual.cols())); | 
					
						
							|  |  |  |   Matrix H3_actualVel(H3_actual.block(6, 0, 3, H3_actual.cols())); | 
					
						
							|  |  |  |   Matrix H4_actualVel(H4_actual.block(6, 0, 3, H4_actual.cols())); | 
					
						
							|  |  |  |   Matrix H5_actualVel(H5_actual.block(6, 0, 3, H5_actual.cols())); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Calculate the Jacobian matrices H1 until H5 using the numerical derivative function
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |   Matrix H1_expectedVel, H2_expectedVel, H3_expectedVel, H4_expectedVel, | 
					
						
							|  |  |  |       H5_expectedVel; | 
					
						
							|  |  |  |   H1_expectedVel = numericalDerivative11<Vector, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, std::placeholders::_1, Vel1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose1); | 
					
						
							|  |  |  |   H2_expectedVel = numericalDerivative11<Vector, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, std::placeholders::_1, Bias1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel1); | 
					
						
							|  |  |  |   H3_expectedVel = numericalDerivative11<Vector, imuBias::ConstantBias>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, std::placeholders::_1, Pose2, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Bias1); | 
					
						
							|  |  |  |   H4_expectedVel = numericalDerivative11<Vector, Pose3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, Bias1, std::placeholders::_1, Vel2, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Pose2); | 
					
						
							|  |  |  |   H5_expectedVel = numericalDerivative11<Vector, Vector3>( | 
					
						
							| 
									
										
										
										
											2021-07-11 09:03:15 +08:00
										 |  |  |       std::bind(&predictionErrorVel, Pose1, Vel1, Bias1, Pose2, std::placeholders::_1, factor), | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  |       Vel2); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Verify they are equal for this choice of state
 | 
					
						
							| 
									
										
										
										
											2014-10-22 07:32:59 +08:00
										 |  |  |   CHECK( assert_equal(H1_expectedVel, H1_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H2_expectedVel, H2_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H3_expectedVel, H3_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H4_expectedVel, H4_actualVel, 1e-5)); | 
					
						
							|  |  |  |   CHECK( assert_equal(H5_expectedVel, H5_actualVel, 1e-5)); | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-11-03 20:15:41 +08:00
										 |  |  | int main() { | 
					
						
							|  |  |  |   TestResult tr; | 
					
						
							|  |  |  |   return TestRegistry::runAllTests(tr); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-01-25 05:01:10 +08:00
										 |  |  | /* ************************************************************************* */ |