68 void print(
const std::string& s =
"InvDepthFactorVariant1",
69 const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const {
76 const This *e = dynamic_cast<const This*>(&p);
80 && this->K_->equals(*e->K_, tol);
83 Vector inverseDepthError(
const Pose3& pose,
const Vector6& landmark)
const {
86 double x = landmark(0), y = landmark(1), z = landmark(2);
87 double theta = landmark(3), phi = landmark(4), rho = landmark(5);
88 Point3 world_P_landmark =
Point3(x, y, z) +
Point3(cos(theta)*cos(phi)/rho, sin(theta)*cos(phi)/rho, sin(phi)/rho);
91 return camera.project(world_P_landmark) -
measured_;
92 }
catch( CheiralityException& e) {
94 <<
": Inverse Depth Landmark [" << DefaultKeyFormatter(this->key2()) <<
"]" 95 <<
" moved behind camera [" << DefaultKeyFormatter(this->
key1()) <<
"]" 97 return Vector::Ones(2) * 2.0 *
K_->fx();
99 return (Vector(1) << 0.0).finished();
104 boost::optional<Matrix&> H1=boost::none,
105 boost::optional<Matrix&> H2=boost::none)
const {
108 (*H1) = numericalDerivative11<Vector, Pose3>(
109 boost::bind(&InvDepthFactorVariant1::inverseDepthError,
this, _1,
113 (*H2) = numericalDerivative11<Vector, Vector6>(
114 boost::bind(&InvDepthFactorVariant1::inverseDepthError,
this, pose,
118 return inverseDepthError(pose, landmark);
135 template<
class ARCHIVE>
136 void serialize(ARCHIVE & ar,
const unsigned int ) {
137 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(
Base);
139 ar & BOOST_SERIALIZATION_NVP(
K_);
This is the base class for all factor types.
Definition: Factor.h:54
A convenient base class for creating your own NoiseModelFactor with 2 variables.
Definition: NonlinearFactor.h:345
The most common 5DOF 3D->2D calibration.
Definition: PinholeCamera.h:33
virtual void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const
Print.
Definition: NonlinearFactor.cpp:63
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:57
const Point2 & imagePoint() const
return the measurement
Definition: InvDepthFactorVariant1.h:122
InvDepthFactorVariant1()
Default constructor.
Definition: InvDepthFactorVariant1.h:44
InvDepthFactorVariant1(const Key poseKey, const Key landmarkKey, const Point2 &measured, const Cal3_S2::shared_ptr &K, const SharedNoiseModel &model)
Constructor.
Definition: InvDepthFactorVariant1.h:56
boost::shared_ptr< Cal3_S2 > shared_ptr
shared pointer to calibration object
Definition: Cal3_S2.h:39
NoiseModelFactor2< Pose3, Vector6 > Base
shorthand for base class type
Definition: InvDepthFactorVariant1.h:35
void print(const std::string &s="InvDepthFactorVariant1", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const
print
Definition: InvDepthFactorVariant1.h:68
boost::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:33
boost::shared_ptr< This > shared_ptr
shorthand for a smart pointer to a factor
Definition: InvDepthFactorVariant1.h:41
Base class for all pinhole cameras.
Nonlinear factor base class.
Definition: NonlinearFactor.h:50
Key key1() const
methods to retrieve both keys
Definition: NonlinearFactor.h:377
Point2 measured_
2D measurement
Definition: InvDepthFactorVariant1.h:29
Binary factor representing a visual measurement using an inverse-depth parameterization.
Definition: InvDepthFactorVariant1.h:25
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
Non-linear factor base classes.
virtual ~InvDepthFactorVariant1()
Virtual destructor.
Definition: InvDepthFactorVariant1.h:61
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
const Cal3_S2::shared_ptr calibration() const
return the calibration object
Definition: InvDepthFactorVariant1.h:127
noiseModel::Base::shared_ptr SharedNoiseModel
Note, deliberately not in noiseModel namespace.
Definition: NoiseModel.h:1072
Cal3_S2::shared_ptr K_
shared pointer to calibration object
Definition: InvDepthFactorVariant1.h:30
friend class boost::serialization::access
Serialization function.
Definition: InvDepthFactorVariant1.h:134
Some functions to compute numerical derivatives.
virtual bool equals(const NonlinearFactor &f, double tol=1e-9) const
Check if two factors are equal.
Definition: NonlinearFactor.cpp:71
virtual bool equals(const NonlinearFactor &p, double tol=1e-9) const
equals
Definition: InvDepthFactorVariant1.h:75
Vector evaluateError(const Pose3 &pose, const Vector6 &landmark, boost::optional< Matrix & > H1=boost::none, boost::optional< Matrix & > H2=boost::none) const
Evaluate error h(x)-z and optionally derivatives.
Definition: InvDepthFactorVariant1.h:103
InvDepthFactorVariant1 This
shorthand for this class
Definition: InvDepthFactorVariant1.h:38