SmartProjectionPoseFactor.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
20 #pragma once
21 
23 
24 namespace gtsam {
44 template<class CALIBRATION>
46  PinholePose<CALIBRATION> > {
47 
48 private:
52 
53 protected:
54 
55  boost::shared_ptr<CALIBRATION> K_;
56 
57 public:
58 
60  typedef boost::shared_ptr<This> shared_ptr;
61 
66 
74  const SharedNoiseModel& sharedNoiseModel,
75  const boost::shared_ptr<CALIBRATION> K,
77  : Base(sharedNoiseModel, params), K_(K) {
78  }
79 
88  const SharedNoiseModel& sharedNoiseModel,
89  const boost::shared_ptr<CALIBRATION> K,
90  const boost::optional<Pose3> body_P_sensor,
92  : SmartProjectionPoseFactor(sharedNoiseModel, K, params) {
94  }
95 
98  }
99 
105  void print(const std::string& s = "", const KeyFormatter& keyFormatter =
106  DefaultKeyFormatter) const override {
107  std::cout << s << "SmartProjectionPoseFactor, z = \n ";
108  Base::print("", keyFormatter);
109  }
110 
112  bool equals(const NonlinearFactor& p, double tol = 1e-9) const override {
113  const This *e = dynamic_cast<const This*>(&p);
114  return e && Base::equals(p, tol);
115  }
116 
120  double error(const Values& values) const override {
121  if (this->active(values)) {
122  return this->totalReprojectionError(cameras(values));
123  } else { // else of active flag
124  return 0.0;
125  }
126  }
127 
129  inline const boost::shared_ptr<CALIBRATION> calibration() const {
130  return K_;
131  }
132 
139  typename Base::Cameras cameras(const Values& values) const override {
140  typename Base::Cameras cameras;
141  for (const Key& k : this->keys_) {
142  const Pose3 world_P_sensor_k =
144  : values.at<Pose3>(k);
145  cameras.emplace_back(world_P_sensor_k, K_);
146  }
147  return cameras;
148  }
149 
150  private:
151 
154  template<class ARCHIVE>
155  void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
156  ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(Base);
157  ar & BOOST_SERIALIZATION_NVP(K_);
158  }
159 
160 };
161 // end of class declaration
162 
164 template<class CALIBRATION>
165 struct traits<SmartProjectionPoseFactor<CALIBRATION> > : public Testable<
166  SmartProjectionPoseFactor<CALIBRATION> > {
167 };
168 
169 } // \ namespace gtsam
Base::Cameras cameras(const Values &values) const override
double totalReprojectionError(const Cameras &cameras, boost::optional< Point3 > externalPoint=boost::none) const
SmartProjectionPoseFactor< CALIBRATION > This
boost::shared_ptr< CALIBRATION > K_
calibration object (one for all cameras)
leaf::MyValues values
static Cal3_S2 K(500, 500, 0.1, 640/2, 480/2)
KeyVector keys_
The keys involved in this factor.
Definition: Factor.h:72
boost::optional< Pose3 > body_P_sensor_
Pose of the camera in the body frame.
friend class boost::serialization::access
Serialization function.
static const KeyFormatter DefaultKeyFormatter
Definition: Key.h:43
bool equals(const NonlinearFactor &p, double tol=1e-9) const override
equals
virtual bool active(const Values &) const
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
Smart factor on cameras (pose + calibration)
SmartProjectionPoseFactor(const SharedNoiseModel &sharedNoiseModel, const boost::shared_ptr< CALIBRATION > K, const boost::optional< Pose3 > body_P_sensor, const SmartProjectionParams &params=SmartProjectionParams())
const ValueType at(Key j) const
Definition: Values-inl.h:342
const boost::shared_ptr< CALIBRATION > calibration() 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
static SmartStereoProjectionParams params
double error(const Values &values) const override
traits
Definition: chartTesting.h:28
bool equals(const NonlinearFactor &p, double tol=1e-9) const override
equals
void serialize(ARCHIVE &ar, const unsigned int)
float * p
boost::shared_ptr< This > shared_ptr
shorthand for a smart pointer to a factor
const G double tol
Definition: Group.h:83
SmartProjectionFactor< Camera > Base
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:61
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:734
CameraSet< CAMERA > Cameras
shorthand for a set of cameras
SmartProjectionPoseFactor(const SharedNoiseModel &sharedNoiseModel, const boost::shared_ptr< CALIBRATION > K, const SmartProjectionParams &params=SmartProjectionParams())


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:44:16