| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file PoseRTV.cpp | 
					
						
							|  |  |  |  * @author Alex Cunningham | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <gtsam/base/numericalDerivative.h>
 | 
					
						
							|  |  |  | #include <gtsam/base/Vector.h>
 | 
					
						
							| 
									
										
										
										
											2014-12-22 07:12:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | #include <gtsam/geometry/Pose2.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 { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const Vector g = delta(3, 2, 9.81); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | double bound(double a, double min, double max) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   if (a < min) return min; | 
					
						
							|  |  |  |   else if (a > max) return max; | 
					
						
							|  |  |  |   else return a; | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV::PoseRTV(double roll, double pitch, double yaw, double x, double y, double z, | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     double vx, double vy, double vz) | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | : Rt_(Rot3::RzRyRx(roll, pitch, yaw), Point3(x, y, z)), v_(vx, vy, vz) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV::PoseRTV(const Vector& rtv) | 
					
						
							|  |  |  | : Rt_(Rot3::RzRyRx(rtv.head(3)), Point3(rtv.segment(3, 3))), v_(rtv.tail(3)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Vector PoseRTV::vector() const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   Vector rtv(9); | 
					
						
							|  |  |  |   rtv.head(3) = Rt_.rotation().xyz(); | 
					
						
							|  |  |  |   rtv.segment(3,3) = Rt_.translation().vector(); | 
					
						
							|  |  |  |   rtv.tail(3) = v_.vector(); | 
					
						
							|  |  |  |   return rtv; | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | bool PoseRTV::equals(const PoseRTV& other, double tol) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return Rt_.equals(other.Rt_, tol) && v_.equals(other.v_, tol); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | void PoseRTV::print(const string& s) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   cout << s << ":" << endl; | 
					
						
							|  |  |  |   gtsam::print((Vector)R().xyz(), "  R:rpy"); | 
					
						
							|  |  |  |   t().print("  T"); | 
					
						
							|  |  |  |   v_.print("  V"); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  | PoseRTV PoseRTV::Expmap(const Vector9& v, ChartJacobian H) { | 
					
						
							|  |  |  |   if (H) CONCEPT_NOT_IMPLEMENTED; | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   Pose3 newPose = Pose3::Expmap(v.head<6>()); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Velocity3 newVel = Velocity3(v.tail<3>()); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return PoseRTV(newPose, newVel); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  | Vector9 PoseRTV::Logmap(const PoseRTV& p, ChartJacobian H) { | 
					
						
							|  |  |  |   if (H) CONCEPT_NOT_IMPLEMENTED; | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   Vector6 Lx = Pose3::Logmap(p.Rt_); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Vector3 Lv = p.v_.vector(); | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   return (Vector9() << Lx, Lv).finished(); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-12-21 03:22:34 +08:00
										 |  |  | PoseRTV PoseRTV::retract(const Vector& v, | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  |                          ChartJacobian Horigin, | 
					
						
							|  |  |  |                          ChartJacobian Hv) const { | 
					
						
							|  |  |  |   if (Horigin || Hv) CONCEPT_NOT_IMPLEMENTED; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   assert(v.size() == 9); | 
					
						
							|  |  |  |   // First order approximation
 | 
					
						
							|  |  |  |   Pose3 newPose = Rt_.retract(sub(v, 0, 6)); | 
					
						
							|  |  |  |   Velocity3 newVel = v_ + Rt_.rotation() * Point3(sub(v, 6, 9)); | 
					
						
							|  |  |  |   return PoseRTV(newPose, newVel); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-12-21 03:22:34 +08:00
										 |  |  | Vector PoseRTV::localCoordinates(const PoseRTV& p1, | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  |                                  ChartJacobian Horigin, | 
					
						
							|  |  |  |                                  ChartJacobian Hp) const { | 
					
						
							|  |  |  |   if (Horigin || Hp) CONCEPT_NOT_IMPLEMENTED; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   const Pose3& x0 = pose(), &x1 = p1.pose(); | 
					
						
							|  |  |  |   // First order approximation
 | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   Vector6 poseLogmap = x0.localCoordinates(x1); | 
					
						
							|  |  |  |   Vector3 lv = rotation().unrotate(p1.velocity() - v_).vector(); | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   return (Vector(9) << poseLogmap, lv).finished(); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-10-23 01:31:41 +08:00
										 |  |  | PoseRTV inverse_(const PoseRTV& p) { return p.inverse(); } | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  | PoseRTV PoseRTV::inverse(ChartJacobian H1) const { | 
					
						
							| 
									
										
										
										
											2013-08-03 00:04:17 +08:00
										 |  |  |   if (H1) *H1 = numericalDerivative11<PoseRTV,PoseRTV>(inverse_, *this, 1e-5); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   return PoseRTV(Rt_.inverse(), - v_); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-10-23 01:31:41 +08:00
										 |  |  | PoseRTV compose_(const PoseRTV& p1, const PoseRTV& p2) { return p1.compose(p2); } | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  | PoseRTV PoseRTV::compose(const PoseRTV& p, ChartJacobian H1, | 
					
						
							|  |  |  |     ChartJacobian H2) const { | 
					
						
							| 
									
										
										
										
											2012-10-23 01:31:41 +08:00
										 |  |  |   if (H1) *H1 = numericalDerivative21(compose_, *this, p, 1e-5); | 
					
						
							|  |  |  |   if (H2) *H2 = numericalDerivative22(compose_, *this, p, 1e-5); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   return PoseRTV(Rt_.compose(p.Rt_), v_+p.v_); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV between_(const PoseRTV& p1, const PoseRTV& p2) { return p1.between(p2); } | 
					
						
							|  |  |  | PoseRTV PoseRTV::between(const PoseRTV& p, | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  |     ChartJacobian H1, | 
					
						
							|  |  |  |     ChartJacobian H2) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   if (H1) *H1 = numericalDerivative21(between_, *this, p, 1e-5); | 
					
						
							|  |  |  |   if (H2) *H2 = numericalDerivative22(between_, *this, p, 1e-5); | 
					
						
							|  |  |  |   return inverse().compose(p); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV PoseRTV::planarDynamics(double vel_rate, double heading_rate, | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     double max_accel, double dt) const { | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // split out initial state
 | 
					
						
							|  |  |  |   const Rot3& r1 = R(); | 
					
						
							|  |  |  |   const Velocity3& v1 = v(); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // Update vehicle heading
 | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   Rot3 r2 = r1.retract((Vector(3) << 0.0, 0.0, heading_rate * dt).finished()); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   const double yaw2 = r2.ypr()(0); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // Update vehicle position
 | 
					
						
							|  |  |  |   const double mag_v1 = v1.norm(); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // FIXME: this doesn't account for direction in velocity bounds
 | 
					
						
							|  |  |  |   double dv = bound(vel_rate - mag_v1, - (max_accel * dt), max_accel * dt); | 
					
						
							|  |  |  |   double mag_v2 = mag_v1 + dv; | 
					
						
							|  |  |  |   Velocity3 v2 = mag_v2 * Velocity3(cos(yaw2), sin(yaw2), 0.0); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   Point3 t2 = translationIntegration(r2, v2, dt); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return PoseRTV(r2, t2, v2); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV PoseRTV::flyingDynamics( | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     double pitch_rate, double heading_rate, double lift_control, double dt) const { | 
					
						
							|  |  |  |   // split out initial state
 | 
					
						
							|  |  |  |   const Rot3& r1 = R(); | 
					
						
							|  |  |  |   const Velocity3& v1 = v(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Update vehicle heading (and normalise yaw)
 | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |   Vector rot_rates = (Vector(3) << 0.0, pitch_rate, heading_rate).finished(); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   Rot3 r2 = r1.retract(rot_rates*dt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Work out dynamics on platform
 | 
					
						
							|  |  |  |   const double thrust = 50.0; | 
					
						
							|  |  |  |   const double lift   = 50.0; | 
					
						
							|  |  |  |   const double drag   = 0.1; | 
					
						
							|  |  |  |   double yaw2 = r2.yaw(); | 
					
						
							|  |  |  |   double pitch2 = r2.pitch(); | 
					
						
							|  |  |  |   double forward_accel = -thrust * sin(pitch2); // r2, pitch (in global frame?) controls forward force
 | 
					
						
							|  |  |  |   double loss_lift = lift*fabs(sin(pitch2)); | 
					
						
							|  |  |  |   Rot3 yaw_correction_bn = Rot3::yaw(yaw2); | 
					
						
							|  |  |  |   Point3 forward(forward_accel, 0.0, 0.0); | 
					
						
							|  |  |  |   Vector Acc_n = | 
					
						
							| 
									
										
										
										
											2014-11-23 08:35:27 +08:00
										 |  |  |       yaw_correction_bn.rotate(forward).vector()              // applies locally forward force in the global frame
 | 
					
						
							|  |  |  |       - drag * (Vector(3) << v1.x(), v1.y(), 0.0).finished()  // drag term dependent on v1
 | 
					
						
							|  |  |  |       + delta(3, 2, loss_lift - lift_control);                // falling due to lift lost from pitch
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Update Vehicle Position and Velocity
 | 
					
						
							|  |  |  |   Velocity3 v2 = v1 + Velocity3(Acc_n * dt); | 
					
						
							|  |  |  |   Point3 t2 = translationIntegration(r2, v2, dt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return PoseRTV(r2, t2, v2); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV PoseRTV::generalDynamics( | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |     const Vector& accel, const Vector& gyro, double dt) const { | 
					
						
							|  |  |  |   //  Integrate Attitude Equations
 | 
					
						
							|  |  |  |   Rot3 r2 = rotation().retract(gyro * dt); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   //  Integrate Velocity Equations
 | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Velocity3 v2 = v_ + (Velocity3(dt * (r2.matrix() * accel + g))); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   //  Integrate Position Equations
 | 
					
						
							|  |  |  |   Point3 t2 = translationIntegration(r2, v2, dt); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return PoseRTV(t2, r2, v2); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  | Vector6 PoseRTV::imuPrediction(const PoseRTV& x2, double dt) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // split out states
 | 
					
						
							|  |  |  |   const Rot3      &r1 = R(), &r2 = x2.R(); | 
					
						
							|  |  |  |   const Velocity3 &v1 = v(), &v2 = x2.v(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   Vector6 imu; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // acceleration
 | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Vector3 accel = (v2-v1).vector() / dt; | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   imu.head<3>() = r2.transpose() * (accel - g); | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // rotation rates
 | 
					
						
							|  |  |  |   // just using euler angles based on matlab code
 | 
					
						
							|  |  |  |   // FIXME: this is silly - we shouldn't use differences in Euler angles
 | 
					
						
							|  |  |  |   Matrix Enb = RRTMnb(r1); | 
					
						
							| 
									
										
										
										
											2014-12-23 00:22:45 +08:00
										 |  |  |   Vector3 euler1 = r1.xyz(), euler2 = r2.xyz(); | 
					
						
							|  |  |  |   Vector3 dR = euler2 - euler1; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // normalize yaw in difference (as per Mitch's code)
 | 
					
						
							|  |  |  |   dR(2) = Rot2::fromAngle(dR(2)).theta(); | 
					
						
							|  |  |  |   dR /= dt; | 
					
						
							| 
									
										
										
										
											2014-11-04 22:41:14 +08:00
										 |  |  |   imu.tail<3>() = Enb * dR; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  | //  imu.tail(3) = r1.transpose() * dR;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return imu; | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Point3 PoseRTV::translationIntegration(const Rot3& r2, const Velocity3& v2, double dt) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // predict point for constraint
 | 
					
						
							|  |  |  |   // NOTE: uses simple Euler approach for prediction
 | 
					
						
							|  |  |  |   Point3 pred_t2 = t() + v2 * dt; | 
					
						
							|  |  |  |   return pred_t2; | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | double range_(const PoseRTV& A, const PoseRTV& B) { return A.range(B); } | 
					
						
							|  |  |  | double PoseRTV::range(const PoseRTV& other, | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  |     OptionalJacobian<1,9> H1, OptionalJacobian<1,9> H2) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   if (H1) *H1 = numericalDerivative21(range_, *this, other, 1e-5); | 
					
						
							|  |  |  |   if (H2) *H2 = numericalDerivative22(range_, *this, other, 1e-5); | 
					
						
							| 
									
										
										
										
											2013-06-06 00:11:36 +08:00
										 |  |  |   return t().distance(other.t()); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | PoseRTV transformed_from_(const PoseRTV& global, const Pose3& transform) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return global.transformed_from(transform); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-23 06:42:52 +08:00
										 |  |  | PoseRTV PoseRTV::transformed_from(const Pose3& trans, ChartJacobian Dglobal, | 
					
						
							|  |  |  |     OptionalJacobian<9, 6> Dtrans) const { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // Note that we rotate the velocity
 | 
					
						
							|  |  |  |   Matrix DVr, DTt; | 
					
						
							|  |  |  |   Velocity3 newvel = trans.rotation().rotate(v_, DVr, DTt); | 
					
						
							|  |  |  |   if (!Dglobal && !Dtrans) | 
					
						
							|  |  |  |     return PoseRTV(trans.compose(pose()), newvel); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Pose3 transform is just compose
 | 
					
						
							|  |  |  |   Matrix DTc, DGc; | 
					
						
							|  |  |  |   Pose3 newpose = trans.compose(pose(), DTc, DGc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (Dglobal) { | 
					
						
							|  |  |  |     *Dglobal = zeros(9,9); | 
					
						
							|  |  |  |     insertSub(*Dglobal, DGc, 0, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Rotate velocity
 | 
					
						
							|  |  |  |     insertSub(*Dglobal, eye(3,3), 6, 6); // FIXME: should this actually be an identity matrix?
 | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (Dtrans) { | 
					
						
							|  |  |  |     *Dtrans = numericalDerivative22(transformed_from_, *this, trans, 1e-8); | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     //    *Dtrans = zeros(9,6);
 | 
					
						
							|  |  |  |     //    // directly affecting the pose
 | 
					
						
							|  |  |  |     //    insertSub(*Dtrans, DTc, 0, 0); // correct in tests
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     //    // rotating the velocity
 | 
					
						
							|  |  |  |     //    Matrix vRhat = skewSymmetric(-v_.x(), -v_.y(), -v_.z());
 | 
					
						
							|  |  |  |     //    trans.rotation().print("Transform rotation");
 | 
					
						
							|  |  |  |     //    gtsam::print(vRhat, "vRhat");
 | 
					
						
							|  |  |  |     //    gtsam::print(DVr, "DVr");
 | 
					
						
							|  |  |  |     //    // FIXME: find analytic derivative
 | 
					
						
							|  |  |  |     ////    insertSub(*Dtrans, vRhat, 6, 0); // works if PoseRTV.rotation() = I
 | 
					
						
							|  |  |  |     ////    insertSub(*Dtrans, trans.rotation().matrix() * vRhat, 6, 0); // FAIL: both tests fail
 | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return PoseRTV(newpose, newvel); | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Matrix PoseRTV::RRTMbn(const Vector& euler) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   assert(euler.size() == 3); | 
					
						
							|  |  |  |   const double s1 = sin(euler(1-1)), c1 = cos(euler(1-1)); | 
					
						
							|  |  |  |   const double t2 = tan(euler(2-1)), c2 = cos(euler(2-1)); | 
					
						
							|  |  |  |   Matrix Ebn(3,3); | 
					
						
							|  |  |  |   Ebn << 1.0, s1 * t2, c1 * t2, | 
					
						
							|  |  |  |          0.0,      c1,     -s1, | 
					
						
							|  |  |  |          0.0, s1 / c2, c1 / c2; | 
					
						
							|  |  |  |   return Ebn; | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Matrix PoseRTV::RRTMbn(const Rot3& att) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return PoseRTV::RRTMbn(att.rpy()); | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Matrix PoseRTV::RRTMnb(const Vector& euler) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   assert(euler.size() == 3); | 
					
						
							|  |  |  |   Matrix Enb(3,3); | 
					
						
							|  |  |  |   const double s1 = sin(euler(1-1)), c1 = cos(euler(1-1)); | 
					
						
							|  |  |  |   const double s2 = sin(euler(2-1)), c2 = cos(euler(2-1)); | 
					
						
							|  |  |  |   Enb << 1.0, 0.0,   -s2, | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  |          0.0,  c1, s1*c2, | 
					
						
							|  |  |  |          0.0, -s1, c1*c2; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return Enb; | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | Matrix PoseRTV::RRTMnb(const Rot3& att) { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return PoseRTV::RRTMnb(att.rpy()); | 
					
						
							| 
									
										
										
										
											2012-06-06 21:04:47 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-05-04 01:03:16 +08:00
										 |  |  | } // \namespace gtsam
 |