sam/BearingRangeFactor.h
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
20 #pragma once
21 
24 #include <boost/concept/assert.hpp>
25 
26 namespace gtsam {
27 
32 template <typename A1, typename A2,
33  typename B = typename Bearing<A1, A2>::result_type,
34  typename R = typename Range<A1, A2>::result_type>
36  : public ExpressionFactorN<BearingRange<A1, A2>, A1, A2> {
37  private:
41 
42  public:
43  typedef boost::shared_ptr<This> shared_ptr;
44 
47 
49  BearingRangeFactor(Key key1, Key key2, const T &bearingRange,
50  const SharedNoiseModel &model)
51  : Base({{key1, key2}}, model, T(bearingRange)) {
52  this->initialize(expression({{key1, key2}}));
53  }
54 
56  BearingRangeFactor(Key key1, Key key2, const B &measuredBearing,
57  const R &measuredRange, const SharedNoiseModel &model)
58  : Base({{key1, key2}}, model, T(measuredBearing, measuredRange)) {
59  this->initialize(expression({{key1, key2}}));
60  }
61 
62  ~BearingRangeFactor() override {}
63 
66  return boost::static_pointer_cast<gtsam::NonlinearFactor>(
68  }
69 
70  // Return measurement expression
71  Expression<T> expression(const typename Base::ArrayNKeys& keys) const override {
72  return Expression<T>(T::Measure, Expression<A1>(keys[0]),
73  Expression<A2>(keys[1]));
74  }
75 
76  Vector evaluateError(const A1& a1, const A2& a2,
77  boost::optional<Matrix&> H1 = boost::none,
78  boost::optional<Matrix&> H2 = boost::none) const
79  {
80  std::vector<Matrix> Hs(2);
81  const auto &keys = Factor::keys();
83  {{keys[0], genericValue(a1)}, {keys[1], genericValue(a2)}},
84  Hs);
85  if (H1) *H1 = Hs[0];
86  if (H2) *H2 = Hs[1];
87  return error;
88  }
89 
91  void print(const std::string& s = "",
92  const KeyFormatter& kf = DefaultKeyFormatter) const override {
93  std::cout << s << "BearingRangeFactor" << std::endl;
94  Base::print(s, kf);
95  }
96 
97 
98  private:
100  template <class ARCHIVE>
101  void serialize(ARCHIVE& ar, const unsigned int /*version*/) {
102  ar& boost::serialization::make_nvp(
103  "Base", boost::serialization::base_object<Base>(*this));
104  }
105 }; // BearingRangeFactor
106 
108 template <typename A1, typename A2, typename B, typename R>
109 struct traits<BearingRangeFactor<A1, A2, B, R> >
110  : public Testable<BearingRangeFactor<A1, A2, B, R> > {};
111 
112 } // namespace gtsam
double error(const Values &c) const override
BearingRangeFactor< A1, A2 > This
std::array< Key, NARY_EXPRESSION_SIZE > ArrayNKeys
boost::shared_ptr< This > shared_ptr
void print(const std::string &s="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
print relies on Testable traits being defined for T
Expression< BearingRange< A1, A2 > > expression() const override
Return an expression that predicts the measurement given Values.
BearingRangeFactor(Key key1, Key key2, const B &measuredBearing, const R &measuredRange, const SharedNoiseModel &model)
Construct from separate bearing and range.
noiseModel::Diagonal::shared_ptr model
Rot2 R(Rot2::fromAngle(0.1))
void initialize(const Expression< BearingRange< A1, A2 > > &expression)
Initialize with constructor arguments.
Vector unwhitenedError(const Values &x, boost::optional< std::vector< Matrix > & > H=boost::none) const override
friend class boost::serialization::access
static const KeyFormatter DefaultKeyFormatter
Definition: Key.h:43
gtsam::NonlinearFactor::shared_ptr clone() const override
const Symbol key1('v', 1)
void print(const std::string &s="", const KeyFormatter &kf=DefaultKeyFormatter) const override
print
Eigen::VectorXd Vector
Definition: Vector.h:38
static BearingRange Measure(const A1 &a1, const A2 &a2, OptionalJacobian< dimension, traits< A1 >::dimension > H1=boost::none, OptionalJacobian< dimension, traits< A2 >::dimension > H2=boost::none)
Prediction function that stacks measurements.
Definition: BearingRange.h:77
boost::shared_ptr< This > shared_ptr
ExpressionFactorN< T, A1, A2 > Base
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
RealScalar s
Vector evaluateError(const A1 &a1, const A2 &a2, boost::optional< Matrix & > H1=boost::none, boost::optional< Matrix & > H2=boost::none) const
pair< size_t, size_t > Range
Definition: testBTree.cpp:29
traits
Definition: chartTesting.h:28
GenericValue< T > genericValue(const T &v)
Definition: GenericValue.h:212
const KeyVector & keys() const
Access the factor&#39;s involved variable keys.
Definition: Factor.h:124
Bearing-Range product.
const Symbol key2('v', 2)
BearingRangeFactor()
Default constructor.
BearingRangeFactor(Key key1, Key key2, const T &bearingRange, const SharedNoiseModel &model)
Construct from BearingRange instance.
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:61
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:734
void serialize(ARCHIVE &ar, const unsigned int)
Expression< T > expression(const typename Base::ArrayNKeys &keys) const override


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:41:41