| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file FullIMUFactor.h | 
					
						
							|  |  |  |  * @brief Factor to express an IMU measurement between dynamic poses | 
					
						
							|  |  |  |  * @author Alex Cunningham | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <gtsam/base/numericalDerivative.h>
 | 
					
						
							|  |  |  | #include <gtsam/base/LieVector.h>
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/NonlinearFactor.h>
 | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:25 +08:00
										 |  |  | #include <gtsam_unstable/dynamics/PoseRTV.h>
 | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace gtsam { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Class that represents integrating IMU measurements over time for dynamic systems | 
					
						
							|  |  |  |  * This factor has dimension 9, with a built-in constraint for velocity modeling | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Templated to allow for different key types, but variables all | 
					
						
							|  |  |  |  * assumed to be PoseRTV | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | template<class POSE> | 
					
						
							|  |  |  | class FullIMUFactor : public NoiseModelFactor2<POSE, POSE> { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   typedef NoiseModelFactor2<POSE, POSE> Base; | 
					
						
							|  |  |  |   typedef FullIMUFactor<POSE> This; | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   /** measurements from the IMU */ | 
					
						
							|  |  |  |   Vector accel_, gyro_; | 
					
						
							|  |  |  |   double dt_; /// time between measurements
 | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   /** Standard constructor */ | 
					
						
							|  |  |  |   FullIMUFactor(const Vector& accel, const Vector& gyro, | 
					
						
							|  |  |  |       double dt, const Key& key1, const Key& key2, const SharedNoiseModel& model) | 
					
						
							|  |  |  |   : Base(model, key1, key2), accel_(accel), gyro_(gyro), dt_(dt) { | 
					
						
							|  |  |  |     assert(model->dim() == 9); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** Single IMU vector - imu = [accel, gyro] */ | 
					
						
							|  |  |  |   FullIMUFactor(const Vector& imu, | 
					
						
							|  |  |  |       double dt, const Key& key1, const Key& key2, const SharedNoiseModel& model) | 
					
						
							|  |  |  |   : Base(model, key1, key2), accel_(imu.head(3)), gyro_(imu.tail(3)), dt_(dt) { | 
					
						
							|  |  |  |     assert(imu.size() == 6); | 
					
						
							|  |  |  |     assert(model->dim() == 9); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   virtual ~FullIMUFactor() {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /// @return a deep copy of this factor
 | 
					
						
							|  |  |  |   virtual gtsam::NonlinearFactor::shared_ptr clone() const { | 
					
						
							|  |  |  |     return boost::static_pointer_cast<gtsam::NonlinearFactor>( | 
					
						
							|  |  |  |         gtsam::NonlinearFactor::shared_ptr(new This(*this))); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** Check if two factors are equal */ | 
					
						
							|  |  |  |   virtual bool equals(const NonlinearFactor& e, double tol = 1e-9) const { | 
					
						
							|  |  |  |     const This* const f = dynamic_cast<const This*>(&e); | 
					
						
							|  |  |  |     return f && Base::equals(e) && | 
					
						
							|  |  |  |         equal_with_abs_tol(accel_, f->accel_, tol) && | 
					
						
							|  |  |  |         equal_with_abs_tol(gyro_, f->gyro_, tol) && | 
					
						
							|  |  |  |         fabs(dt_ - f->dt_) < tol; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void print(const std::string& s="", const gtsam::KeyFormatter& formatter = gtsam::DefaultKeyFormatter) const { | 
					
						
							|  |  |  |     std::string a = "FullIMUFactor: " + s; | 
					
						
							|  |  |  |     Base::print(a, formatter); | 
					
						
							|  |  |  |     gtsam::print(accel_, "accel"); | 
					
						
							|  |  |  |     gtsam::print(gyro_, "gyro"); | 
					
						
							|  |  |  |     std::cout << "dt: " << dt_ << std::endl; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // access
 | 
					
						
							|  |  |  |   const Vector& gyro() const { return gyro_; } | 
					
						
							|  |  |  |   const Vector& accel() const { return accel_; } | 
					
						
							|  |  |  |   Vector z() const { return concatVectors(2, &accel_, &gyro_); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /**
 | 
					
						
							|  |  |  |    * Error evaluation with optional derivatives - calculates | 
					
						
							|  |  |  |    *  z - h(x1,x2) | 
					
						
							|  |  |  |    */ | 
					
						
							|  |  |  |   virtual Vector evaluateError(const PoseRTV& x1, const PoseRTV& x2, | 
					
						
							|  |  |  |       boost::optional<Matrix&> H1 = boost::none, | 
					
						
							|  |  |  |       boost::optional<Matrix&> H2 = boost::none) const { | 
					
						
							|  |  |  |     Vector z(9); | 
					
						
							|  |  |  |     z.head(3).operator=(accel_); // Strange syntax to work around ambiguous operator error with clang
 | 
					
						
							|  |  |  |     z.segment(3, 3).operator=(gyro_); // Strange syntax to work around ambiguous operator error with clang
 | 
					
						
							|  |  |  |     z.tail(3).operator=(x2.t().vector()); // Strange syntax to work around ambiguous operator error with clang
 | 
					
						
							|  |  |  |     if (H1) *H1 = numericalDerivative21<LieVector, PoseRTV, PoseRTV>( | 
					
						
							|  |  |  |         boost::bind(This::predict_proxy, _1, _2, dt_), x1, x2, 1e-5); | 
					
						
							|  |  |  |     if (H2) *H2 = numericalDerivative22<LieVector, PoseRTV, PoseRTV>( | 
					
						
							|  |  |  |         boost::bind(This::predict_proxy, _1, _2, dt_), x1, x2, 1e-5); | 
					
						
							|  |  |  |     return z - predict_proxy(x1, x2, dt_); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** dummy version that fails for non-dynamic poses */ | 
					
						
							|  |  |  |   virtual Vector evaluateError(const Pose3& x1, const Pose3& x2, | 
					
						
							|  |  |  |       boost::optional<Matrix&> H1 = boost::none, | 
					
						
							|  |  |  |       boost::optional<Matrix&> H2 = boost::none) const { | 
					
						
							|  |  |  |     assert(false); | 
					
						
							|  |  |  |     return zero(x1.dim()); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   /** copy of the measurement function formulated for numerical derivatives */ | 
					
						
							|  |  |  |   static LieVector predict_proxy(const PoseRTV& x1, const PoseRTV& x2, double dt) { | 
					
						
							|  |  |  |     Vector hx(9); | 
					
						
							|  |  |  |     hx.head(6).operator=(x1.imuPrediction(x2, dt)); // Strange syntax to work around ambiguous operator error with clang
 | 
					
						
							|  |  |  |     hx.tail(3).operator=(x1.translationIntegration(x2, dt).vector()); // Strange syntax to work around ambiguous operator error with clang
 | 
					
						
							|  |  |  |     return LieVector(hx); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // \namespace gtsam
 |