19 #include <gtsam/geometry/concepts.h> 37 std::optional<POSE> body_P_sensor_;
40 GTSAM_CONCEPT_TESTABLE_TYPE(POSE)
41 GTSAM_CONCEPT_POSE_TYPE(POSE)
48 typedef typename std::shared_ptr<PosePriorFactor<POSE> >
shared_ptr;
57 std::optional<POSE> body_P_sensor = {}) :
58 Base(model, key), prior_(prior), body_P_sensor_(body_P_sensor) {
62 gtsam::NonlinearFactor::shared_ptr
clone()
const override {
64 gtsam::NonlinearFactor::shared_ptr(
new This(*
this))); }
69 void print(
const std::string& s,
const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const override {
70 std::cout << s <<
"PriorFactor on " << keyFormatter(this->
key()) <<
"\n";
71 prior_.print(
" prior mean: ");
72 if(this->body_P_sensor_)
73 this->body_P_sensor_->print(
" sensor pose in body frame: ");
74 this->noiseModel_->print(
" noise model: ");
79 const This* e =
dynamic_cast<const This*
> (&expected);
82 && this->prior_.equals(e->prior_, tol)
83 && ((!body_P_sensor_ && !e->body_P_sensor_) || (body_P_sensor_ && e->body_P_sensor_ && body_P_sensor_->
equals(*e->body_P_sensor_)));
92 return prior_.localCoordinates(p.compose(*body_P_sensor_, H));
96 return prior_.localCoordinates(p);
100 const POSE& prior()
const {
return prior_; }
104 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION 106 friend class boost::serialization::access;
107 template<
class ARCHIVE>
108 void serialize(ARCHIVE & ar,
const unsigned int ) {
109 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP(Base);
110 ar & BOOST_SERIALIZATION_NVP(prior_);
111 ar & BOOST_SERIALIZATION_NVP(body_P_sensor_);
gtsam::NonlinearFactor::shared_ptr clone() const override
Definition: PosePriorFactor.h:62
Definition: NonlinearFactor.h:431
bool equals(const NonlinearFactor &f, double tol=1e-9) const override
Concept check for values that can be used in unit tests.
PosePriorFactor()
Definition: PosePriorFactor.h:51
std::string serialize(const T &input)
serializes to a string
Definition: serialization.h:113
virtual Vector evaluateError(const ValueTypes &... x, OptionalMatrixTypeT< ValueTypes >... H) const=0
Key key() const
Definition: NonlinearFactor.h:582
Definition: NonlinearFactor.h:68
void print(const std::string &s, const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
Definition: PosePriorFactor.h:69
PosePriorFactor(Key key, const POSE &prior, const SharedNoiseModel &model, std::optional< POSE > body_P_sensor={})
Definition: PosePriorFactor.h:56
Matrix * OptionalMatrixType
Definition: NonlinearFactor.h:55
Vector evaluateError(const POSE &p, OptionalMatrixType H) const override
Definition: PosePriorFactor.h:89
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
Definition: chartTesting.h:28
bool equals(const NonlinearFactor &expected, double tol=1e-9) const override
Definition: PosePriorFactor.h:78
Non-linear factor base classes.
std::shared_ptr< PosePriorFactor< POSE > > shared_ptr
shorthand for a smart pointer to a factor
Definition: PosePriorFactor.h:48
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:102
Definition: PosePriorFactor.h:29
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:741
bool equals(const This &other, double tol=1e-9) const
check equality