Correct Jacobian in PartialPriorFactor, modify derived factors for compatibility
parent
e6b7d9f133
commit
593e6e975d
|
@ -50,16 +50,7 @@ struct DRollPrior : public gtsam::PartialPriorFactor<PoseRTV> {
|
||||||
struct VelocityPrior : public gtsam::PartialPriorFactor<PoseRTV> {
|
struct VelocityPrior : public gtsam::PartialPriorFactor<PoseRTV> {
|
||||||
typedef gtsam::PartialPriorFactor<PoseRTV> Base;
|
typedef gtsam::PartialPriorFactor<PoseRTV> Base;
|
||||||
VelocityPrior(Key key, const gtsam::Vector& vel, const gtsam::SharedNoiseModel& model)
|
VelocityPrior(Key key, const gtsam::Vector& vel, const gtsam::SharedNoiseModel& model)
|
||||||
: Base(key, model) {
|
: Base(key, {6, 7, 8}, vel, model) {}
|
||||||
this->prior_ = vel;
|
|
||||||
assert(vel.size() == 3);
|
|
||||||
this->mask_.resize(3);
|
|
||||||
this->mask_[0] = 6;
|
|
||||||
this->mask_[1] = 7;
|
|
||||||
this->mask_[2] = 8;
|
|
||||||
this->H_ = Matrix::Zero(3, 9);
|
|
||||||
this->fillH();
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -74,31 +65,14 @@ struct DGroundConstraint : public gtsam::PartialPriorFactor<PoseRTV> {
|
||||||
* Primary constructor allows for variable height of the "floor"
|
* Primary constructor allows for variable height of the "floor"
|
||||||
*/
|
*/
|
||||||
DGroundConstraint(Key key, double height, const gtsam::SharedNoiseModel& model)
|
DGroundConstraint(Key key, double height, const gtsam::SharedNoiseModel& model)
|
||||||
: Base(key, model) {
|
: Base(key, {5, 8, 0, 1}, Vector::Unit(4,0)*height, model) {}
|
||||||
this->prior_ = Vector::Unit(4,0)*height; // [z, vz, roll, pitch]
|
|
||||||
this->mask_.resize(4);
|
|
||||||
this->mask_[0] = 5; // z = height
|
|
||||||
this->mask_[1] = 8; // vz
|
|
||||||
this->mask_[2] = 0; // roll
|
|
||||||
this->mask_[3] = 1; // pitch
|
|
||||||
this->H_ = Matrix::Zero(3, 9);
|
|
||||||
this->fillH();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fully specify vector - use only for debugging
|
* Fully specify vector - use only for debugging
|
||||||
*/
|
*/
|
||||||
DGroundConstraint(Key key, const Vector& constraint, const gtsam::SharedNoiseModel& model)
|
DGroundConstraint(Key key, const Vector& constraint, const gtsam::SharedNoiseModel& model)
|
||||||
: Base(key, model) {
|
: Base(key, {5, 8, 0, 1}, constraint, model) {
|
||||||
assert(constraint.size() == 4);
|
assert(constraint.size() == 4);
|
||||||
this->prior_ = constraint; // [z, vz, roll, pitch]
|
|
||||||
this->mask_.resize(4);
|
|
||||||
this->mask_[0] = 5; // z = height
|
|
||||||
this->mask_[1] = 8; // vz
|
|
||||||
this->mask_[2] = 0; // roll
|
|
||||||
this->mask_[3] = 1; // pitch
|
|
||||||
this->H_ = Matrix::Zero(3, 9);
|
|
||||||
this->fillH();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,8 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <Eigen/Core>
|
||||||
|
|
||||||
#include <gtsam/nonlinear/NonlinearFactor.h>
|
#include <gtsam/nonlinear/NonlinearFactor.h>
|
||||||
#include <gtsam/base/Lie.h>
|
#include <gtsam/base/Lie.h>
|
||||||
|
|
||||||
|
@ -43,16 +45,14 @@ namespace gtsam {
|
||||||
typedef VALUE T;
|
typedef VALUE T;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
// Concept checks on the variable type - currently requires Lie
|
// Concept checks on the variable type - currently requires Lie
|
||||||
GTSAM_CONCEPT_LIE_TYPE(VALUE)
|
GTSAM_CONCEPT_LIE_TYPE(VALUE)
|
||||||
|
|
||||||
typedef NoiseModelFactor1<VALUE> Base;
|
typedef NoiseModelFactor1<VALUE> Base;
|
||||||
typedef PartialPriorFactor<VALUE> This;
|
typedef PartialPriorFactor<VALUE> This;
|
||||||
|
|
||||||
Vector prior_; ///< measurement on tangent space parameters, in compressed form
|
Vector prior_; ///< Measurement on tangent space parameters, in compressed form.
|
||||||
std::vector<size_t> mask_; ///< indices of values to constrain in compressed prior vector
|
std::vector<size_t> mask_; ///< Indices of the measured tangent space parameters.
|
||||||
Matrix H_; ///< Constant Jacobian - computed at creation
|
|
||||||
|
|
||||||
/** default constructor - only use for serialization */
|
/** default constructor - only use for serialization */
|
||||||
PartialPriorFactor() {}
|
PartialPriorFactor() {}
|
||||||
|
@ -68,20 +68,22 @@ namespace gtsam {
|
||||||
|
|
||||||
~PartialPriorFactor() override {}
|
~PartialPriorFactor() override {}
|
||||||
|
|
||||||
/** Single Element Constructor: acts on a single parameter specified by idx */
|
/** Single Element Constructor: Prior on a single parameter at index 'idx' in the tangent vector.*/
|
||||||
PartialPriorFactor(Key key, size_t idx, double prior, const SharedNoiseModel& model) :
|
PartialPriorFactor(Key key, size_t idx, double prior, const SharedNoiseModel& model) :
|
||||||
Base(model, key), prior_((Vector(1) << prior).finished()), mask_(1, idx), H_(Matrix::Zero(1, T::dimension)) {
|
Base(model, key),
|
||||||
|
prior_((Vector(1) << prior).finished()),
|
||||||
|
mask_(1, idx) {
|
||||||
assert(model->dim() == 1);
|
assert(model->dim() == 1);
|
||||||
this->fillH();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Indices Constructor: specify the mask with a set of indices */
|
/** Indices Constructor: Specify the relevant measured indices in the tangent vector.*/
|
||||||
PartialPriorFactor(Key key, const std::vector<size_t>& mask, const Vector& prior,
|
PartialPriorFactor(Key key, const std::vector<size_t>& indices, const Vector& prior,
|
||||||
const SharedNoiseModel& model) :
|
const SharedNoiseModel& model) :
|
||||||
Base(model, key), prior_(prior), mask_(mask), H_(Matrix::Zero(mask.size(), T::dimension)) {
|
Base(model, key),
|
||||||
assert((size_t)prior_.size() == mask.size());
|
prior_(prior),
|
||||||
assert(model->dim() == (size_t) prior.size());
|
mask_(indices) {
|
||||||
this->fillH();
|
assert((size_t)prior_.size() == mask_.size());
|
||||||
|
assert(model->dim() == (size_t)prior.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @return a deep copy of this factor
|
/// @return a deep copy of this factor
|
||||||
|
@ -107,30 +109,30 @@ namespace gtsam {
|
||||||
|
|
||||||
/** implement functions needed to derive from Factor */
|
/** implement functions needed to derive from Factor */
|
||||||
|
|
||||||
/** vector of errors */
|
/** Returns a vector of errors for the measured tangent parameters. */
|
||||||
Vector evaluateError(const T& p, boost::optional<Matrix&> H = boost::none) const override {
|
Vector evaluateError(const T& p, boost::optional<Matrix&> H = boost::none) const override {
|
||||||
if (H) (*H) = H_;
|
if (H) {
|
||||||
// FIXME: this was originally the generic retraction - may not produce same results
|
Matrix H_logmap;
|
||||||
Vector full_logmap = T::Logmap(p);
|
T::Logmap(p, H_logmap);
|
||||||
// Vector full_logmap = T::identity().localCoordinates(p); // Alternate implementation
|
(*H) = Matrix::Zero(mask_.size(), T::dimension);
|
||||||
Vector masked_logmap = Vector::Zero(this->dim());
|
for (size_t i = 0; i < mask_.size(); ++i) {
|
||||||
for (size_t i=0; i<mask_.size(); ++i)
|
(*H).row(i) = H_logmap.row(mask_.at(i));
|
||||||
masked_logmap(i) = full_logmap(mask_[i]);
|
}
|
||||||
return masked_logmap - prior_;
|
}
|
||||||
|
// FIXME: this was originally the generic retraction - may not produce same results.
|
||||||
|
// Compute the tangent vector representation of T, and optionally get the Jacobian.
|
||||||
|
const Vector& full_logmap = T::Logmap(p);
|
||||||
|
Vector partial_logmap = Vector::Zero(T::dimension);
|
||||||
|
for (size_t i = 0; i < mask_.size(); ++i) {
|
||||||
|
partial_logmap(i) = full_logmap(mask_.at(i));
|
||||||
|
}
|
||||||
|
|
||||||
|
return partial_logmap - prior_;
|
||||||
}
|
}
|
||||||
|
|
||||||
// access
|
// access
|
||||||
const Vector& prior() const { return prior_; }
|
const Vector& prior() const { return prior_; }
|
||||||
const std::vector<size_t>& mask() const { return mask_; }
|
const std::vector<size_t>& mask() const { return mask_; }
|
||||||
const Matrix& H() const { return H_; }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
|
|
||||||
/** Constructs the jacobian matrix in place */
|
|
||||||
void fillH() {
|
|
||||||
for (size_t i=0; i<mask_.size(); ++i)
|
|
||||||
H_(i, mask_[i]) = 1.0;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/** Serialization function */
|
/** Serialization function */
|
||||||
|
@ -141,7 +143,7 @@ namespace gtsam {
|
||||||
boost::serialization::base_object<Base>(*this));
|
boost::serialization::base_object<Base>(*this));
|
||||||
ar & BOOST_SERIALIZATION_NVP(prior_);
|
ar & BOOST_SERIALIZATION_NVP(prior_);
|
||||||
ar & BOOST_SERIALIZATION_NVP(mask_);
|
ar & BOOST_SERIALIZATION_NVP(mask_);
|
||||||
ar & BOOST_SERIALIZATION_NVP(H_);
|
// ar & BOOST_SERIALIZATION_NVP(H_);
|
||||||
}
|
}
|
||||||
}; // \class PartialPriorFactor
|
}; // \class PartialPriorFactor
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue