PoseTranslationPrior.h
Go to the documentation of this file.
1 
10 #pragma once
11 
14 
15 namespace gtsam {
16 
20 template<class POSE>
22 public:
25  typedef POSE Pose;
26  typedef typename POSE::Translation Translation;
27  typedef typename POSE::Rotation Rotation;
28 
29  // Provide access to the Matrix& version of evaluateError:
30  using Base::evaluateError;
31 
34  GTSAM_CONCEPT_LIE_TYPE(Translation)
35 
36 protected:
37 
38  Translation measured_;
39 
40 public:
41 
44 
47  : Base(model, key), measured_(measured) {
48  }
49 
52  : Base(model, key), measured_(pose_z.translation()) {
53  }
54 
55  ~PoseTranslationPrior() override {}
56 
57  const Translation& measured() const { return measured_; }
58 
61  return std::static_pointer_cast<gtsam::NonlinearFactor>(
63 
65  Vector evaluateError(const Pose& pose, OptionalMatrixType H) const override {
66  const Translation& newTrans = pose.translation();
67  const Rotation& R = pose.rotation();
68  const int tDim = traits<Translation>::GetDimension(newTrans);
69  const int xDim = traits<Pose>::GetDimension(pose);
70  if (H) {
71  *H = Matrix::Zero(tDim, xDim);
72  std::pair<size_t, size_t> transInterval = POSE::translationInterval();
73  (*H).middleCols(transInterval.first, tDim) = R.matrix();
74  }
75 
76  return traits<Translation>::Local(measured_, newTrans);
77  }
78 
80  bool equals(const NonlinearFactor& expected, double tol=1e-9) const override {
81  const This *e = dynamic_cast<const This*> (&expected);
82  return e != nullptr && Base::equals(*e, tol) && traits<Translation>::Equals(measured_, e->measured_, tol);
83  }
84 
86  void print(const std::string& s="", const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override {
87  Base::print(s + "PoseTranslationPrior", keyFormatter);
88  traits<Translation>::Print(measured_, "Measured Translation");
89  }
90 
91 private:
92 
93 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
94 
95  friend class boost::serialization::access;
96  template<class ARCHIVE>
97  void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
98  // NoiseModelFactor1 instead of NoiseModelFactorN for backward compatibility
99  ar & boost::serialization::make_nvp("NoiseModelFactor1",
100  boost::serialization::base_object<Base>(*this));
101  ar & BOOST_SERIALIZATION_NVP(measured_);
102  }
103 #endif
104 
105 };
106 
107 } // \namespace gtsam
108 
109 
110 
111 
PoseTranslationPrior(Key key, const Translation &measured, const noiseModel::Base::shared_ptr &model)
bool equals(const NonlinearFactor &expected, double tol=1e-9) const override
std::string serialize(const T &input)
serializes to a string
noiseModel::Diagonal::shared_ptr model
Matrix expected
Definition: testMatrix.cpp:971
bool equals(const NonlinearFactor &f, double tol=1e-9) const override
virtual Vector evaluateError(const ValueTypes &... x, OptionalMatrixTypeT< ValueTypes >... H) const=0
Rot2 R(Rot2::fromAngle(0.1))
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
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
gtsam::NonlinearFactor::shared_ptr clone() const override
static const KeyFormatter DefaultKeyFormatter
Definition: Key.h:43
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
const Translation & measured() const
#define GTSAM_CONCEPT_POSE_TYPE(T)
Matrix * OptionalMatrixType
PoseTranslationPrior(Key key, const POSE &pose_z, const noiseModel::Base::shared_ptr &model)
Eigen::VectorXd Vector
Definition: Vector.h:38
NoiseModelFactorN< POSE > Base
Point3_ translation(const Pose3_ &pose)
std::shared_ptr< Base > shared_ptr
Definition: NoiseModel.h:60
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
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
traits
Definition: chartTesting.h:28
#define GTSAM_CONCEPT_LIE_TYPE(T)
Definition: Lie.h:373
static const Pose3 pose(Rot3(Vector3(1, -1, -1).asDiagonal()), Point3(0, 0, 0.5))
Non-linear factor base classes.
std::shared_ptr< This > shared_ptr
PoseTranslationPrior< POSE > This
Vector evaluateError(const Pose &pose, OptionalMatrixType H) const override
const G double tol
Definition: Group.h:86
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:102
void Print(const CONTAINER &keys, const string &s, const KeyFormatter &keyFormatter)
Definition: Key.cpp:62
#define GTSAM_CONCEPT_GROUP_TYPE(T)
Definition: Group.h:216


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:35:15