gtsam 4.1.1
gtsam
InvDepthFactorVariant1.h
Go to the documentation of this file.
1
11#pragma once
12
19
20#include <boost/bind/bind.hpp>
21
22namespace gtsam {
23
27class InvDepthFactorVariant1: public NoiseModelFactor2<Pose3, Vector6> {
28protected:
29
30 // Keep a copy of measurement and calibration for I/O
32 Cal3_S2::shared_ptr K_;
33
34public:
35
38
41
43 typedef boost::shared_ptr<This> shared_ptr;
44
47 measured_(0.0, 0.0), K_(new Cal3_S2(444, 555, 666, 777, 888)) {
48 }
49
58 InvDepthFactorVariant1(const Key poseKey, const Key landmarkKey,
59 const Point2& measured, const Cal3_S2::shared_ptr& K, const SharedNoiseModel& model) :
60 Base(model, poseKey, landmarkKey), measured_(measured), K_(K) {}
61
64
70 void print(const std::string& s = "InvDepthFactorVariant1",
71 const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override {
72 Base::print(s, keyFormatter);
74 }
75
77 bool equals(const NonlinearFactor& p, double tol = 1e-9) const override {
78 const This *e = dynamic_cast<const This*>(&p);
79 return e
80 && Base::equals(p, tol)
81 && traits<Point2>::Equals(this->measured_, e->measured_, tol)
82 && this->K_->equals(*e->K_, tol);
83 }
84
85 Vector inverseDepthError(const Pose3& pose, const Vector6& landmark) const {
86 try {
87 // Calculate the 3D coordinates of the landmark in the world frame
88 double x = landmark(0), y = landmark(1), z = landmark(2);
89 double theta = landmark(3), phi = landmark(4), rho = landmark(5);
90 Point3 world_P_landmark = Point3(x, y, z) + Point3(cos(theta)*cos(phi)/rho, sin(theta)*cos(phi)/rho, sin(phi)/rho);
91 // Project landmark into Pose2
92 PinholeCamera<Cal3_S2> camera(pose, *K_);
93 return camera.project(world_P_landmark) - measured_;
94 } catch( CheiralityException& e) {
95 std::cout << e.what()
96 << ": Inverse Depth Landmark [" << DefaultKeyFormatter(this->key2()) << "]"
97 << " moved behind camera [" << DefaultKeyFormatter(this->key1()) <<"]"
98 << std::endl;
99 return Vector::Ones(2) * 2.0 * K_->fx();
100 }
101 return (Vector(1) << 0.0).finished();
102 }
103
105 Vector evaluateError(const Pose3& pose, const Vector6& landmark,
106 boost::optional<Matrix&> H1=boost::none,
107 boost::optional<Matrix&> H2=boost::none) const override {
108
109 if (H1) {
110 (*H1) = numericalDerivative11<Vector, Pose3>(
111 std::bind(&InvDepthFactorVariant1::inverseDepthError, this,
112 std::placeholders::_1, landmark),
113 pose);
114 }
115 if (H2) {
116 (*H2) = numericalDerivative11<Vector, Vector6>(
117 std::bind(&InvDepthFactorVariant1::inverseDepthError, this, pose,
118 std::placeholders::_1), landmark);
119 }
120
121 return inverseDepthError(pose, landmark);
122 }
123
125 const Point2& imagePoint() const {
126 return measured_;
127 }
128
130 const Cal3_S2::shared_ptr calibration() const {
131 return K_;
132 }
133
134private:
135
138 template<class ARCHIVE>
139 void serialize(ARCHIVE & ar, const unsigned int /*version*/) {
140 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(Base);
141 ar & BOOST_SERIALIZATION_NVP(measured_);
142 ar & BOOST_SERIALIZATION_NVP(K_);
143 }
144};
145
146} // \ namespace gtsam
Some functions to compute numerical derivatives.
The most common 5DOF 3D->2D calibration.
Base class for all pinhole cameras.
3D Pose
2D Point
Non-linear factor base classes.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
Vector2 Point2
As of GTSAM 4, in order to make GTSAM more lean, it is now possible to just typedef Point2 to Vector2...
Definition: Point2.h:27
Vector3 Point3
As of GTSAM 4, in order to make GTSAM more lean, it is now possible to just typedef Point3 to Vector3...
Definition: Point3.h:35
noiseModel::Base::shared_ptr SharedNoiseModel
Note, deliberately not in noiseModel namespace.
Definition: NoiseModel.h:736
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:69
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
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
Definition: Cal3_S2.h:34
Definition: PinholeCamera.h:33
Definition: Pose3.h:37
This is the base class for all factor types.
Definition: Factor.h:56
Nonlinear factor base class.
Definition: NonlinearFactor.h:43
bool equals(const NonlinearFactor &f, double tol=1e-9) const override
Check if two factors are equal.
Definition: NonlinearFactor.cpp:71
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
Print.
Definition: NonlinearFactor.cpp:63
A convenient base class for creating your own NoiseModelFactor with 2 variables.
Definition: NonlinearFactor.h:369
Key key1() const
methods to retrieve both keys
Definition: NonlinearFactor.h:401
Binary factor representing a visual measurement using an inverse-depth parameterization.
Definition: InvDepthFactorVariant1.h:27
NoiseModelFactor2< Pose3, Vector6 > Base
shorthand for base class type
Definition: InvDepthFactorVariant1.h:37
~InvDepthFactorVariant1() override
Virtual destructor.
Definition: InvDepthFactorVariant1.h:63
const Point2 & imagePoint() const
return the measurement
Definition: InvDepthFactorVariant1.h:125
InvDepthFactorVariant1(const Key poseKey, const Key landmarkKey, const Point2 &measured, const Cal3_S2::shared_ptr &K, const SharedNoiseModel &model)
Constructor.
Definition: InvDepthFactorVariant1.h:58
void print(const std::string &s="InvDepthFactorVariant1", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
print
Definition: InvDepthFactorVariant1.h:70
InvDepthFactorVariant1()
Default constructor.
Definition: InvDepthFactorVariant1.h:46
InvDepthFactorVariant1 This
shorthand for this class
Definition: InvDepthFactorVariant1.h:40
const Cal3_S2::shared_ptr calibration() const
return the calibration object
Definition: InvDepthFactorVariant1.h:130
Cal3_S2::shared_ptr K_
shared pointer to calibration object
Definition: InvDepthFactorVariant1.h:32
Point2 measured_
2D measurement
Definition: InvDepthFactorVariant1.h:31
friend class boost::serialization::access
Serialization function.
Definition: InvDepthFactorVariant1.h:137
bool equals(const NonlinearFactor &p, double tol=1e-9) const override
equals
Definition: InvDepthFactorVariant1.h:77
Vector evaluateError(const Pose3 &pose, const Vector6 &landmark, boost::optional< Matrix & > H1=boost::none, boost::optional< Matrix & > H2=boost::none) const override
Evaluate error h(x)-z and optionally derivatives.
Definition: InvDepthFactorVariant1.h:105
boost::shared_ptr< This > shared_ptr
shorthand for a smart pointer to a factor
Definition: InvDepthFactorVariant1.h:43