| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file VelocityConstraint3.h | 
					
						
							| 
									
										
										
										
											2014-11-03 20:52:08 +08:00
										 |  |  |  * @brief A simple 3-way factor constraining double poses and velocity | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  |  * @author Duy-Nguyen Ta | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/NonlinearFactor.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace gtsam { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-03 20:52:08 +08:00
										 |  |  | class VelocityConstraint3 : public NoiseModelFactor3<double, double, double> { | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2014-11-03 20:52:08 +08:00
										 |  |  |   typedef NoiseModelFactor3<double, double, double> Base; | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /** default constructor to allow for serialization */ | 
					
						
							|  |  |  |   VelocityConstraint3() {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   double dt_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   typedef boost::shared_ptr<VelocityConstraint3 > shared_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ///TODO: comment
 | 
					
						
							|  |  |  |   VelocityConstraint3(Key key1, Key key2, Key velKey, double dt, double mu = 1000.0) | 
					
						
							| 
									
										
										
										
											2019-09-19 03:24:09 +08:00
										 |  |  |   : Base(noiseModel::Constrained::All(1, std::abs(mu)), key1, key2, velKey), dt_(dt) {} | 
					
						
							| 
									
										
										
										
											2021-01-29 12:02:13 +08:00
										 |  |  |   ~VelocityConstraint3() override {} | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /// @return a deep copy of this factor
 | 
					
						
							| 
									
										
										
										
											2020-07-26 15:57:54 +08:00
										 |  |  |   gtsam::NonlinearFactor::shared_ptr clone() const override { | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  |     return boost::static_pointer_cast<gtsam::NonlinearFactor>( | 
					
						
							|  |  |  |         gtsam::NonlinearFactor::shared_ptr(new VelocityConstraint3(*this))); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-18 05:25:15 +08:00
										 |  |  |   /** x1 + v*dt - x2 = 0, with optional derivatives */ | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   Vector evaluateError(const double& x1, const double& x2, const double& v, | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  |       boost::optional<Matrix&> H1 = boost::none, | 
					
						
							|  |  |  |       boost::optional<Matrix&> H2 = boost::none, | 
					
						
							| 
									
										
										
										
											2020-07-26 15:57:54 +08:00
										 |  |  |       boost::optional<Matrix&> H3 = boost::none) const override { | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |     const size_t p = 1; | 
					
						
							| 
									
										
										
										
											2016-04-12 04:04:24 +08:00
										 |  |  |     if (H1) *H1 = Matrix::Identity(p,p); | 
					
						
							|  |  |  |     if (H2) *H2 = -Matrix::Identity(p,p); | 
					
						
							|  |  |  |     if (H3) *H3 = Matrix::Identity(p,p)*dt_; | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |     return (Vector(1) << x1+v*dt_-x2).finished(); | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** Serialization function */ | 
					
						
							|  |  |  |   friend class boost::serialization::access; | 
					
						
							|  |  |  |   template<class ARCHIVE> | 
					
						
							| 
									
										
										
										
											2015-03-06 23:12:09 +08:00
										 |  |  |   void serialize(ARCHIVE & ar, const unsigned int /*version*/) { | 
					
						
							| 
									
										
										
										
											2013-04-11 06:02:21 +08:00
										 |  |  |     ar & boost::serialization::make_nvp("NoiseModelFactor3", | 
					
						
							|  |  |  |         boost::serialization::base_object<Base>(*this)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; // \VelocityConstraint3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |