13#include <boost/bind/bind.hpp>
50 double dt,
double mu = 1000)
78 gtsam::NonlinearFactor::shared_ptr
clone()
const override {
79 return boost::static_pointer_cast<gtsam::NonlinearFactor>(
86 boost::optional<gtsam::Matrix&> H1=boost::none,
87 boost::optional<gtsam::Matrix&> H2=boost::none)
const override {
88 if (H1) *H1 = gtsam::numericalDerivative21<gtsam::Vector,PoseRTV,PoseRTV>(
89 std::bind(VelocityConstraint::evaluateError_, std::placeholders::_1,
91 if (H2) *H2 = gtsam::numericalDerivative22<gtsam::Vector,PoseRTV,PoseRTV>(
92 std::bind(VelocityConstraint::evaluateError_, std::placeholders::_1,
98 std::string a =
"VelocityConstraint: " + s;
101 case dynamics::TRAPEZOIDAL: std::cout <<
"Integration: Trapezoidal\n";
break;
102 case dynamics::EULER_START: std::cout <<
"Integration: Euler (start)\n";
break;
103 case dynamics::EULER_END: std::cout <<
"Integration: Euler (end)\n";
break;
104 default: std::cout <<
"Integration: Unknown\n" << std::endl;
break;
106 std::cout <<
"dt: " << dt_ << std::endl;
110 static gtsam::Vector evaluateError_(
const PoseRTV& x1,
const PoseRTV& x2,
113 const Velocity3& v1 = x1.v(), v2 = x2.v();
114 const Point3& p1 = x1.t(), p2 = x2.t();
117 case dynamics::TRAPEZOIDAL: hx = p1 +
Point3((v1 + v2) * dt *0.5);
break;
118 case dynamics::EULER_START: hx = p1 +
Point3(v1 * dt);
break;
119 case dynamics::EULER_END : hx = p1 +
Point3(v2 * dt);
break;
120 default: assert(
false);
break;
Some functions to compute numerical derivatives.
Non-linear factor base classes.
Pose3 with translational velocity.
IntegrationMode
controls which model to use for numerical integration to use for constraints
Definition: VelocityConstraint.h:20
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
Vector3 Point3
As of GTSAM 4, in order to make GTSAM more lean, it is now possible to just typedef Point3 to Vector3...
Definition: Point3.h:35
noiseModel::Base::shared_ptr SharedNoiseModel
Note, deliberately not in noiseModel namespace.
Definition: NoiseModel.h:736
Vector3 Velocity3
Velocity is currently typedef'd to Vector3.
Definition: NavState.h:28
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:69
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
This is the base class for all factor types.
Definition: Factor.h:56
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
Print.
Definition: NonlinearFactor.cpp:63
const SharedNoiseModel & noiseModel() const
access to the noise model
Definition: NonlinearFactor.h:211
A convenient base class for creating your own NoiseModelFactor with 2 variables.
Definition: NonlinearFactor.h:369
Key key1() const
methods to retrieve both keys
Definition: NonlinearFactor.h:401
Robot state for use with IMU measurements.
Definition: PoseRTV.h:23
Constraint to enforce dynamics between the velocities and poses, using a prediction based on a numeri...
Definition: VelocityConstraint.h:35
gtsam::NonlinearFactor::shared_ptr clone() const override
Definition: VelocityConstraint.h:78
gtsam::Vector evaluateError(const PoseRTV &x1, const PoseRTV &x2, boost::optional< gtsam::Matrix & > H1=boost::none, boost::optional< gtsam::Matrix & > H2=boost::none) const override
Calculates the error for trapezoidal model given.
Definition: VelocityConstraint.h:85
dynamics::IntegrationMode integration_mode_
time difference between frames in seconds
Definition: VelocityConstraint.h:42
VelocityConstraint(Key key1, Key key2, double dt, const gtsam::SharedNoiseModel &model)
Creates a constraint relating the given variables with arbitrary noise model Uses the default Trapezo...
Definition: VelocityConstraint.h:72
VelocityConstraint(Key key1, Key key2, double dt, double mu=1000)
Creates a constraint relating the given variables with fully constrained noise model Uses the default...
Definition: VelocityConstraint.h:57
VelocityConstraint(Key key1, Key key2, const dynamics::IntegrationMode &mode, double dt, double mu=1000)
Creates a constraint relating the given variables with fully constrained noise model.
Definition: VelocityConstraint.h:49
VelocityConstraint(Key key1, Key key2, const dynamics::IntegrationMode &mode, double dt, const gtsam::SharedNoiseModel &model)
Creates a constraint relating the given variables with arbitrary noise model.
Definition: VelocityConstraint.h:64
void print(const std::string &s="", const gtsam::KeyFormatter &formatter=gtsam::DefaultKeyFormatter) const override
Print.
Definition: VelocityConstraint.h:97