GTSAM  4.0.2
C++ library for smoothing and mapping (SAM)
Pose3Upright.h
Go to the documentation of this file.
1 
12 #pragma once
13 
14 #include <gtsam_unstable/dllexport.h>
15 #include <gtsam/geometry/Pose3.h>
16 #include <gtsam/geometry/Pose2.h>
17 
18 namespace gtsam {
19 
25 class GTSAM_UNSTABLE_EXPORT Pose3Upright {
26 public:
27  static const size_t dimension = 4;
28 
29 protected:
30 
31  Pose2 T_;
32  double z_;
33 
34 public:
37 
39  Pose3Upright() : z_(0.0) {}
40 
42  Pose3Upright(const Pose3Upright& x) : T_(x.T_), z_(x.z_) {}
43  Pose3Upright(const Rot2& bearing, const Point3& t);
44  Pose3Upright(double x, double y, double z, double theta);
45  Pose3Upright(const Pose2& pose, double z);
46 
48  Pose3Upright(const Pose3& fullpose);
49 
53 
55  void print(const std::string& s = "") const;
56 
58  bool equals(const Pose3Upright& pose, double tol = 1e-9) const;
59 
63 
64  double x() const { return T_.x(); }
65  double y() const { return T_.y(); }
66  double z() const { return z_; }
67  double theta() const { return T_.theta(); }
68 
69  Point2 translation2() const;
70  Point3 translation() const;
71  Rot2 rotation2() const;
72  Rot3 rotation() const;
73  Pose2 pose2() const;
74  Pose3 pose() const;
75 
79 
81  inline static size_t Dim() { return dimension; }
82 
84  inline size_t dim() const { return dimension; }
85 
88  Pose3Upright retract(const Vector& v) const;
89 
91  Vector localCoordinates(const Pose3Upright& p2) const;
92 
96 
98  static Pose3Upright Identity() { return Pose3Upright(); }
99 
101  Pose3Upright inverse(OptionalJacobian<4,4> H1={}) const;
102 
104  Pose3Upright compose(const Pose3Upright& p2,
105  OptionalJacobian<4,4> H1={},
106  OptionalJacobian<4,4> H2={}) const;
107 
109  inline Pose3Upright operator*(const Pose3Upright& T) const { return compose(T); }
110 
115  Pose3Upright between(const Pose3Upright& p2,
116  OptionalJacobian<4,4> H1={},
117  OptionalJacobian<4,4> H2={}) const;
118 
122 
124  static Pose3Upright Expmap(const Vector& xi);
125 
127  static Vector Logmap(const Pose3Upright& p);
128 
130 
131 private:
132 
133 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION //
134  // Serialization function
135  friend class boost::serialization::access;
136  template<class Archive>
137  void serialize(Archive & ar, const unsigned int /*version*/) {
138  ar & BOOST_SERIALIZATION_NVP(T_);
139  ar & BOOST_SERIALIZATION_NVP(z_);
140  }
141 #endif
142 
143 }; // \class Pose3Upright
144 
145 template<>
146 struct traits<Pose3Upright> : public internal::Manifold<Pose3Upright> {};
147 
148 
149 } // \namespace gtsam
Both ManifoldTraits and Testable.
Definition: Manifold.h:117
Definition: Rot2.h:35
std::string serialize(const T &input)
serializes to a string
Definition: serialization.h:113
Pose3Upright()
Default constructor initializes at origin.
Definition: Pose3Upright.h:39
Vector2 Point2
Definition: Point2.h:32
Definition: Group.h:43
Pose3Upright operator*(const Pose3Upright &T) const
compose syntactic sugar
Definition: Pose3Upright.h:109
static Pose3Upright Identity()
identity for group operation
Definition: Pose3Upright.h:98
Rot3 is a 3D rotation represented as a rotation matrix if the preprocessor symbol GTSAM_USE_QUATERNIO...
Definition: Rot3.h:58
double y() const
get y
Definition: Pose2.h:249
Definition: Testable.h:112
Definition: Pose2.h:39
double theta() const
get theta
Definition: Pose2.h:252
GTSAM_EXPORT void print(const Matrix &A, const std::string &s, std::ostream &stream)
size_t dim() const
Dimensionality of tangent space = 4 DOF.
Definition: Pose3Upright.h:84
static size_t Dim()
Dimensionality of tangent space = 4 DOF - used to autodetect sizes.
Definition: Pose3Upright.h:81
Pose3Upright(const Pose3Upright &x)
Copy constructor.
Definition: Pose3Upright.h:42
Definition: chartTesting.h:28
Definition: OptionalJacobian.h:38
Vector3 Point3
Definition: Point3.h:38
2D Pose
3D Pose
double x() const
get x
Definition: Pose2.h:246
Definition: Pose3.h:37
Definition: Pose3Upright.h:25