OrientedPlane3Factor.cpp
Go to the documentation of this file.
1 /*
2  * OrientedPlane3Factor.cpp
3  *
4  * Created on: Jan 29, 2014
5  * Author: Natesh Srinivasan
6  */
7 
8 #include "OrientedPlane3Factor.h"
9 
10 using namespace std;
11 
12 namespace gtsam {
13 
14 //***************************************************************************
15 void OrientedPlane3Factor::print(const string& s,
16  const KeyFormatter& keyFormatter) const {
17  cout << s << (s == "" ? "" : "\n");
18  cout << "OrientedPlane3Factor Factor (" << keyFormatter(key<1>()) << ", "
19  << keyFormatter(key<2>()) << ")\n";
20  measured_p_.print("Measured Plane");
21  this->noiseModel_->print(" noise model: ");
22 }
23 
24 //***************************************************************************
25 Vector OrientedPlane3Factor::evaluateError(const Pose3& pose,
26  const OrientedPlane3& plane, OptionalMatrixType H1,
27  OptionalMatrixType H2) const {
28  Matrix36 predicted_H_pose;
29  Matrix33 predicted_H_plane, error_H_predicted;
30 
31  OrientedPlane3 predicted_plane = plane.transform(pose,
32  H2 ? &predicted_H_plane : nullptr, H1 ? &predicted_H_pose : nullptr);
33 
34  Vector3 err = predicted_plane.errorVector(
35  measured_p_, (H1 || H2) ? &error_H_predicted : nullptr);
36 
37  // Apply the chain rule to calculate the derivatives.
38  if (H1) {
39  *H1 = error_H_predicted * predicted_H_pose;
40  }
41  if (H2) {
42  *H2 = error_H_predicted * predicted_H_plane;
43  }
44 
45  return err;
46 }
47 
48 //***************************************************************************
50  const KeyFormatter& keyFormatter) const {
51  cout << s << (s == "" ? "" : "\n");
52  cout << s << "Prior Factor on " << keyFormatter(key()) << "\n";
53  measured_p_.print("Measured Plane");
54  this->noiseModel_->print(" noise model: ");
55 }
56 
57 //***************************************************************************
58 bool OrientedPlane3DirectionPrior::equals(const NonlinearFactor& expected,
59  double tol) const {
60  const This* e = dynamic_cast<const This*>(&expected);
61  return e != nullptr && Base::equals(*e, tol)
62  && this->measured_p_.equals(e->measured_p_, tol);
63 }
64 
65 //***************************************************************************
66 Vector OrientedPlane3DirectionPrior::evaluateError(
67  const OrientedPlane3& plane, OptionalMatrixType H) const {
68  Unit3 n_hat_p = measured_p_.normal();
69  Unit3 n_hat_q = plane.normal();
70  Matrix2 H_p;
71  Vector e = n_hat_p.error(n_hat_q, H ? &H_p : nullptr);
72  if (H) {
73  H->resize(2, 3);
74  *H << H_p, Z_2x1;
75  }
76  return e;
77 }
78 
79 } // namespace gtsam
const gtsam::Symbol key('X', 0)
Eigen::Vector3d Vector3
Definition: Vector.h:43
Matrix expected
Definition: testMatrix.cpp:971
Definition: BFloat16.h:88
EIGEN_STRONG_INLINE Packet4f print(const Packet4f &a)
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
Represents an infinite plane in 3D, which is composed of a planar normal and its perpendicular distan...
Represents a 3D point on a unit sphere.
Definition: Unit3.h:42
Matrix * OptionalMatrixType
Eigen::VectorXd Vector
Definition: Vector.h:38
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
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
traits
Definition: chartTesting.h:28
static const Pose3 pose(Rot3(Vector3(1, -1, -1).asDiagonal()), Point3(0, 0, 0.5))
Unit3 normal(OptionalJacobian< 2, 3 > H={}) const
Return the normal.
const G double tol
Definition: Group.h:86
OrientedPlane3 transform(const Pose3 &xr, OptionalJacobian< 3, 3 > Hp={}, OptionalJacobian< 3, 6 > Hr={}) const
Vector2 error(const Unit3 &q, OptionalJacobian< 2, 2 > H_q={}) const
Definition: Unit3.cpp:199
static const Eigen::MatrixBase< Vector2 >::ConstantReturnType Z_2x1
Definition: Vector.h:45
bool equals(const This &other, double tol=1e-9) const
check equality
Definition: Factor.cpp:42
Vector3 errorVector(const OrientedPlane3 &other, OptionalJacobian< 3, 3 > H1={}, OptionalJacobian< 3, 3 > H2={}) const


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:34:59