39 boost::shared_ptr<Matrix> G_;
42 using Rot =
typename std::conditional<d == 2, Rot2, Rot3>::type;
53 const boost::shared_ptr<Matrix> &G =
nullptr);
62 const KeyFormatter &keyFormatter = DefaultKeyFormatter)
const override;
66 double tol = 1e-9)
const override;
76 boost::optional<Matrix &> H1 = boost::none,
77 boost::optional<Matrix &> H2 = boost::none)
const override;
82 void fillJacobians(
const Matrix &M1,
const Matrix &M2,
83 boost::optional<Matrix &> H1,
84 boost::optional<Matrix &> H2)
const;
N*N matrix representation of SO(N).
3D rotation represented as a rotation matrix or quaternion
Non-linear factor base classes.
Global functions in a separate testing namespace.
Definition chartTesting.h:28
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
noiseModel::Base::shared_ptr SharedNoiseModel
Aliases.
Definition NoiseModel.h:724
std::uint64_t Key
Integer nonlinear key type.
Definition types.h:100
Nonlinear factor base class.
Definition NonlinearFactor.h:42
NoiseModelFactorN()
Definition NonlinearFactor.h:469
ShonanFactor is a BetweenFactor that moves in SO(p), but will land on the SO(d) sub-manifold of SO(p)...
Definition ShonanFactor.h:36
bool equals(const NonlinearFactor &expected, double tol=1e-9) const override
assert equality up to a tolerance
Definition ShonanFactor.cpp:68
Vector evaluateError(const SOn &Q1, const SOn &Q2, boost::optional< Matrix & > H1=boost::none, boost::optional< Matrix & > H2=boost::none) const override
Error is Frobenius norm between Q1*P*R12 and Q2*P, where P=[I_3x3;0] projects down from SO(p) to the ...
Definition ShonanFactor.cpp:108
ShonanFactor(Key j1, Key j2, const Rot &R12, size_t p, const SharedNoiseModel &model=nullptr, const boost::shared_ptr< Matrix > &G=nullptr)
Constructor.
Definition ShonanFactor.cpp:35
void print(const std::string &s, const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
print with optional string
Definition ShonanFactor.cpp:58