13#include <boost/bind/bind.hpp>
50 double dt,
double mu = 1000)
58 : Base(
noiseModel::Constrained::All(3, mu), key1, key2),
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 {
89 std::bind(VelocityConstraint::evaluateError_, std::placeholders::_1,
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
internal::FixedSizeMatrix< Y, X1 >::type numericalDerivative21(const std::function< Y(const X1 &, const X2 &)> &h, const X1 &x1, const X2 &x2, double delta=1e-5)
Compute numerical derivative in argument 1 of binary function.
Definition numericalDerivative.h:166
internal::FixedSizeMatrix< Y, X2 >::type numericalDerivative22(std::function< Y(const X1 &, const X2 &)> h, const X1 &x1, const X2 &x2, double delta=1e-5)
Compute numerical derivative in argument 2 of binary function.
Definition numericalDerivative.h:195
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
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:36
noiseModel::Base::shared_ptr SharedNoiseModel
Aliases.
Definition NoiseModel.h:724
Vector3 Velocity3
Velocity is currently typedef'd to Vector3.
Definition NavState.h:28
std::uint64_t Key
Integer nonlinear key type.
Definition types.h:100
All noise models live in the noiseModel namespace.
Definition LossFunctions.cpp:27
virtual void print(const std::string &s="Factor", const KeyFormatter &formatter=DefaultKeyFormatter) const
print
Definition Factor.cpp:29
A convenient base class for creating your own NoiseModelFactor with n variables.
Definition NonlinearFactor.h:400
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