PoseRotationPrior.h
Go to the documentation of this file.
1 
10 #pragma once
11 
14 
15 
16 namespace gtsam {
17 
18 template<class POSE>
19 class PoseRotationPrior : public NoiseModelFactor1<POSE> {
20 public:
21 
24  typedef POSE Pose;
25  typedef typename POSE::Translation Translation;
26  typedef typename POSE::Rotation Rotation;
27 
30  GTSAM_CONCEPT_LIE_TYPE(Rotation)
31 
32  // Get dimensions of pose and rotation type at compile time
33  static const int xDim = FixedDimension<POSE>::value;
34  static const int rDim = FixedDimension<typename POSE::Rotation>::value;
35 
36 protected:
37 
38  Rotation measured_;
39 
40 public:
41 
43  PoseRotationPrior(Key key, const Rotation& rot_z, const SharedNoiseModel& model)
44  : Base(model, key), measured_(rot_z) {}
45 
47  PoseRotationPrior(Key key, const POSE& pose_z, const SharedNoiseModel& model)
48  : Base(model, key), measured_(pose_z.rotation()) {}
49 
50  ~PoseRotationPrior() override {}
51 
54  return boost::static_pointer_cast<gtsam::NonlinearFactor>(
56 
57  // access
58  const Rotation& measured() const { return measured_; }
59 
60  // testable
61 
63  bool equals(const NonlinearFactor& expected, double tol=1e-9) const override {
64  const This *e = dynamic_cast<const This*> (&expected);
65  return e != nullptr && Base::equals(*e, tol) && measured_.equals(e->measured_, tol);
66  }
67 
69  void print(const std::string& s="", const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override {
70  Base::print(s + "PoseRotationPrior", keyFormatter);
71  measured_.print("Measured Rotation");
72  }
73 
75  Vector evaluateError(const Pose& pose, boost::optional<Matrix&> H = boost::none) const override {
76  const Rotation& newR = pose.rotation();
77  if (H) {
78  *H = Matrix::Zero(rDim, xDim);
79  std::pair<size_t, size_t> rotInterval = POSE::rotationInterval();
80  (*H).middleCols(rotInterval.first, rDim).setIdentity(rDim, rDim);
81  }
82 
83  return measured_.localCoordinates(newR);
84  }
85 
86 private:
87 
90  template<class ARCHIVE>
91  void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
92  ar & boost::serialization::make_nvp("NoiseModelFactor1",
93  boost::serialization::base_object<Base>(*this));
94  ar & BOOST_SERIALIZATION_NVP(measured_);
95  }
96 };
97 
98 } // \namespace gtsam
99 
100 
101 
102 
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
bool equals(const NonlinearFactor &f, double tol=1e-9) const override
gtsam::NonlinearFactor::shared_ptr clone() const override
Rot3_ rotation(const Pose3_ &pose)
noiseModel::Diagonal::shared_ptr model
Matrix expected
Definition: testMatrix.cpp:974
Vector evaluateError(const Pose &pose, boost::optional< Matrix & > H=boost::none) const override
Give fixed size dimension of a type, fails at compile time if dynamic.
Definition: Manifold.h:164
PoseRotationPrior< POSE > This
PoseRotationPrior(Key key, const POSE &pose_z, const SharedNoiseModel &model)
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy y set format x g set format y g set format x2 g set format y2 g set format z g set angles radians set nogrid set key title set key left top Right noreverse box linetype linewidth samplen spacing width set nolabel set noarrow set nologscale set logscale x set set pointsize set encoding default set nopolar set noparametric set set set set surface set nocontour set clabel set mapping cartesian set nohidden3d set cntrparam order set cntrparam linear set cntrparam levels auto set cntrparam points set size set set xzeroaxis lt lw set x2zeroaxis lt lw set yzeroaxis lt lw set y2zeroaxis lt lw set tics in set ticslevel set tics set mxtics default set mytics default set mx2tics default set my2tics default set xtics border mirror norotate autofreq set ytics border mirror norotate autofreq set ztics border nomirror norotate autofreq set nox2tics set noy2tics set timestamp bottom norotate set rrange[*:*] noreverse nowriteback set trange[*:*] noreverse nowriteback set urange[*:*] noreverse nowriteback set vrange[*:*] noreverse nowriteback set xlabel matrix size set x2label set timefmt d m y n H
void serialize(ARCHIVE &ar, const unsigned int)
static const KeyFormatter DefaultKeyFormatter
Definition: Key.h:43
bool equals(const NonlinearFactor &expected, double tol=1e-9) const override
#define GTSAM_CONCEPT_POSE_TYPE(T)
Eigen::VectorXd Vector
Definition: Vector.h:38
NoiseModelFactor1< POSE > Base
static const Pose3 pose(Rot3(Vector3(1,-1,-1).asDiagonal()), Point3(0, 0, 0.5))
POSE::Translation Translation
boost::shared_ptr< This > shared_ptr
const Rotation & measured() const
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
traits
Definition: chartTesting.h:28
#define GTSAM_CONCEPT_LIE_TYPE(T)
Definition: Lie.h:356
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
friend class boost::serialization::access
Non-linear factor base classes.
const G double tol
Definition: Group.h:83
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:61
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:734
#define GTSAM_CONCEPT_GROUP_TYPE(T)
Definition: Group.h:213


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:43:27