|
Vector | evaluateError (const Pose3 &wTwi, const Pose3 &wTwa, const OrientedPlane3 &a_plane, boost::optional< Matrix & > H1=boost::none, boost::optional< Matrix & > H2=boost::none, boost::optional< Matrix & > H3=boost::none) const override |
|
| LocalOrientedPlane3Factor () |
| Constructor. More...
|
|
| LocalOrientedPlane3Factor (const Vector4 &z, const SharedGaussian &noiseModel, Key poseKey, Key anchorPoseKey, Key landmarkKey) |
|
| LocalOrientedPlane3Factor (const OrientedPlane3 &z, const SharedGaussian &noiseModel, Key poseKey, Key anchorPoseKey, Key landmarkKey) |
|
void | print (const std::string &s="LocalOrientedPlane3Factor", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override |
| print More...
|
|
virtual | ~LocalOrientedPlane3Factor () |
|
Key | key1 () const |
|
Key | key2 () const |
|
Key | key3 () const |
|
| NoiseModelFactor3 () |
|
| NoiseModelFactor3 (const SharedNoiseModel &noiseModel, Key j1, Key j2, Key j3) |
|
Vector | unwhitenedError (const Values &x, boost::optional< std::vector< Matrix > & > H=boost::none) const override |
|
| ~NoiseModelFactor3 () override |
|
shared_ptr | cloneWithNewNoiseModel (const SharedNoiseModel newNoise) const |
|
size_t | dim () const override |
|
bool | equals (const NonlinearFactor &f, double tol=1e-9) const override |
|
double | error (const Values &c) const override |
|
boost::shared_ptr< GaussianFactor > | linearize (const Values &x) const override |
|
const SharedNoiseModel & | noiseModel () const |
| access to the noise model More...
|
|
| NoiseModelFactor () |
|
template<typename CONTAINER > |
| NoiseModelFactor (const SharedNoiseModel &noiseModel, const CONTAINER &keys) |
|
Vector | unweightedWhitenedError (const Values &c) const |
|
double | weight (const Values &c) const |
|
Vector | whitenedError (const Values &c) const |
|
| ~NoiseModelFactor () override |
|
| NonlinearFactor () |
|
template<typename CONTAINER > |
| NonlinearFactor (const CONTAINER &keys) |
|
virtual | ~NonlinearFactor () |
|
virtual bool | active (const Values &) const |
|
virtual shared_ptr | clone () const |
|
shared_ptr | rekey (const std::map< Key, Key > &rekey_mapping) const |
|
shared_ptr | rekey (const KeyVector &new_keys) const |
|
virtual | ~Factor ()=default |
| Default destructor. More...
|
|
Key | front () const |
| First key. More...
|
|
Key | back () const |
| Last key. More...
|
|
const_iterator | find (Key key) const |
| find More...
|
|
const KeyVector & | keys () const |
| Access the factor's involved variable keys. More...
|
|
const_iterator | begin () const |
|
const_iterator | end () const |
|
size_t | size () const |
|
virtual void | printKeys (const std::string &s="Factor", const KeyFormatter &formatter=DefaultKeyFormatter) const |
| print only keys More...
|
|
KeyVector & | keys () |
|
iterator | begin () |
|
iterator | end () |
|
Factor to measure a planar landmark from a given pose, with a given local linearization point.
This factor is based on the relative plane factor formulation proposed in: Equation 25, M. Kaess, "Simultaneous Localization and Mapping with Infinite Planes", IEEE International Conference on Robotics and Automation, 2015.
The main purpose of this factor is to improve the numerical stability of the optimization, especially compared to gtsam::OrientedPlane3Factor. This is especially relevant when the sensor is far from the origin (and thus the derivatives associated to transforming the plane are large).
x0 is the current sensor pose, and x1 is the local "anchor pose" - i.e. a local linearisation point for the plane. The plane is representated and optimized in x1 frame in the optimization.
Definition at line 35 of file LocalOrientedPlane3Factor.h.