24 #ifndef FACTOR1POSE3D_HPP_ 25 #define FACTOR1POSE3D_HPP_ 28 #include "mrob/matrix_base.hpp" 29 #include "mrob/SE3.hpp" 30 #include "mrob/factor.hpp" 47 Factor1Pose3d(
const Mat4 &observation, std::shared_ptr<Node> &n1,
const Mat6 &obsInf,
49 Factor1Pose3d(
const SE3 &observation, std::shared_ptr<Node> &n1,
const Mat6 &obsInf,
61 MatRefConst
get_obs()
const {
return Tobs_.
T();};
63 MatRefConst get_information_matrix()
const {
return W_;};
64 MatRefConst
get_jacobian([[maybe_unused]] mrob::factor_id_t
id = 0)
const {
return J_;};
const Eigen::Ref< const Mat4 > T() const
Definition: SE3.cpp:237
robustFactorType
Definition: factor.hpp:87
void evaluate_residuals() override
Definition: factor1Pose3d.cpp:48
void evaluate_chi2() override
Definition: factor1Pose3d.cpp:66
VectRefConst get_residual() const
Definition: factor1Pose3d.hpp:62
Definition: factor1Pose3d.hpp:44
MatRefConst get_jacobian([[maybe_unused]] mrob::factor_id_t id=0) const
Definition: factor1Pose3d.hpp:64
void evaluate_jacobians() override
Definition: factor1Pose3d.cpp:58
MatRefConst get_obs() const
Definition: factor1Pose3d.hpp:61
Special Euclidean (group) in 3d Is the group representing rotations and translations, that is, rigid body transformations. SE3 = {T = [R t] | R SO3 , t Re^3 } [0 1] Associated to the groups of RBT, there is the Lie algebra se3 representing the same transformation in the tangent space around the identity. Particularly, xi =[w , v] Re^6, where w Re^3 represents the rotation and v the translation. We will preserve this order in this class.
Definition: matrix_base.hpp:36
void print() const
Definition: factor1Pose3d.cpp:71
Definition: factor.hpp:81