OrientedPlane3Factor.h
Go to the documentation of this file.
1 /*
2  * @file OrientedPlane3Factor.cpp
3  * @brief OrientedPlane3 Factor class
4  * @author Alex Trevor
5  * @date December 22, 2013
6  */
7 
8 #pragma once
9 
12 
13 namespace gtsam {
14 
18 class GTSAM_EXPORT OrientedPlane3Factor: public NoiseModelFactorN<Pose3, OrientedPlane3> {
19  protected:
22 
23  public:
24 
25  // Provide access to the Matrix& version of evaluateError:
26  using NoiseModelFactor2<Pose3, OrientedPlane3>::evaluateError;
27 
30  }
31  ~OrientedPlane3Factor() override {}
32 
40  OrientedPlane3Factor(const Vector4& z, const SharedGaussian& noiseModel,
41  Key poseKey, Key landmarkKey)
42  : Base(noiseModel, poseKey, landmarkKey), measured_p_(z) {}
43 
45  void print(const std::string& s = "OrientedPlane3Factor",
46  const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override;
47 
49  Vector evaluateError(
50  const Pose3& pose, const OrientedPlane3& plane,
51  OptionalMatrixType H1, OptionalMatrixType H2) const override;
52 };
53 
54 // TODO: Convert this factor to dimension two, three dimensions is redundant for direction prior
55 class GTSAM_EXPORT OrientedPlane3DirectionPrior : public NoiseModelFactorN<OrientedPlane3> {
56  protected:
59 
60  public:
61 
62  // Provide access to the Matrix& version of evaluateError:
63  using Base::evaluateError;
64 
68  }
69 
72  const SharedGaussian& noiseModel)
73  : Base(noiseModel, key), measured_p_(z) {}
74 
76  void print(const std::string& s = "OrientedPlane3DirectionPrior",
77  const KeyFormatter& keyFormatter = DefaultKeyFormatter) const override;
78 
80  bool equals(const NonlinearFactor& expected, double tol = 1e-9) const override;
81 
82  Vector evaluateError(const OrientedPlane3& plane, OptionalMatrixType H) const override;
83 };
84 
85 } // gtsam
86 
H
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
Definition: gnuplot_common_settings.hh:74
gtsam::OrientedPlane3DirectionPrior::This
OrientedPlane3DirectionPrior This
Definition: OrientedPlane3Factor.h:65
pose
static const Pose3 pose(Rot3(Vector3(1, -1, -1).asDiagonal()), Point3(0, 0, 0.5))
gtsam::OrientedPlane3DirectionPrior::Base
NoiseModelFactorN< OrientedPlane3 > Base
measured plane parameters
Definition: OrientedPlane3Factor.h:58
s
RealScalar s
Definition: level1_cplx_impl.h:126
e
Array< double, 1, 3 > e(1./3., 0.5, 2.)
gtsam::OrientedPlane3Factor::~OrientedPlane3Factor
~OrientedPlane3Factor() override
Definition: OrientedPlane3Factor.h:31
gtsam::OrientedPlane3DirectionPrior::measured_p_
OrientedPlane3 measured_p_
Definition: OrientedPlane3Factor.h:57
gtsam::Factor
Definition: Factor.h:69
gtsam::OrientedPlane3DirectionPrior
Definition: OrientedPlane3Factor.h:55
gtsam::Vector
Eigen::VectorXd Vector
Definition: Vector.h:38
gtsam::OrientedPlane3
Represents an infinite plane in 3D, which is composed of a planar normal and its perpendicular distan...
Definition: OrientedPlane3.h:36
poseKey
const gtsam::Key poseKey
Definition: testPoseRotationPrior.cpp:29
OrientedPlane3.h
gtsam::DefaultKeyFormatter
KeyFormatter DefaultKeyFormatter
Assign default key formatter.
Definition: Key.cpp:30
gtsam::print
void print(const Matrix &A, const string &s, ostream &stream)
Definition: Matrix.cpp:155
gtsam::OrientedPlane3Factor::Base
NoiseModelFactorN< Pose3, OrientedPlane3 > Base
Definition: OrientedPlane3Factor.h:21
gtsam::KeyFormatter
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
gtsam::Pose3
Definition: Pose3.h:37
gtsam::NoiseModelFactorN
Definition: NonlinearFactor.h:431
cholesky::expected
Matrix expected
Definition: testMatrix.cpp:971
pybind_wrapper_test_script.z
z
Definition: pybind_wrapper_test_script.py:61
gtsam::SharedGaussian
noiseModel::Gaussian::shared_ptr SharedGaussian
Definition: NoiseModel.h:742
gtsam::OrientedPlane3DirectionPrior::OrientedPlane3DirectionPrior
OrientedPlane3DirectionPrior(Key key, const Vector4 &z, const SharedGaussian &noiseModel)
Constructor with measured plane coefficients (a,b,c,d), noise model, landmark symbol.
Definition: OrientedPlane3Factor.h:71
gtsam::equals
Definition: Testable.h:112
key
const gtsam::Symbol key('X', 0)
NonlinearFactor.h
Non-linear factor base classes.
gtsam
traits
Definition: chartTesting.h:28
gtsam::NonlinearFactor
Definition: NonlinearFactor.h:68
gtsam::OrientedPlane3DirectionPrior::OrientedPlane3DirectionPrior
OrientedPlane3DirectionPrior()
Constructor.
Definition: OrientedPlane3Factor.h:67
gtsam::OrientedPlane3Factor::OrientedPlane3Factor
OrientedPlane3Factor()
Constructor.
Definition: OrientedPlane3Factor.h:29
gtsam::OrientedPlane3Factor
Definition: OrientedPlane3Factor.h:18
gtsam::tol
const G double tol
Definition: Group.h:79
gtsam::OptionalMatrixType
Matrix * OptionalMatrixType
Definition: NonlinearFactor.h:55
gtsam::OrientedPlane3Factor::OrientedPlane3Factor
OrientedPlane3Factor(const Vector4 &z, const SharedGaussian &noiseModel, Key poseKey, Key landmarkKey)
Definition: OrientedPlane3Factor.h:40
gtsam::Key
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:97
gtsam::OrientedPlane3Factor::measured_p_
OrientedPlane3 measured_p_
Definition: OrientedPlane3Factor.h:20


gtsam
Author(s):
autogenerated on Tue Jun 25 2024 03:01:46