gtsam 4.1.1
gtsam
BinaryMeasurement.h
Go to the documentation of this file.
1/* ----------------------------------------------------------------------------
2
3 * GTSAM Copyright 2010-2020, 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
12#pragma once
13
26#include <gtsam/base/Testable.h>
28#include <gtsam/inference/Key.h>
30
31#include <iostream>
32#include <vector>
33
34namespace gtsam {
35
36template <class T> class BinaryMeasurement : public Factor {
37 // Check that T type is testable
38 BOOST_CONCEPT_ASSERT((IsTestable<T>));
39
40public:
41 // shorthand for a smart pointer to a measurement
42 using shared_ptr = typename boost::shared_ptr<BinaryMeasurement>;
43
44private:
45 T measured_;
46 SharedNoiseModel noiseModel_;
47
48 public:
49 BinaryMeasurement(Key key1, Key key2, const T &measured,
50 const SharedNoiseModel &model = nullptr)
51 : Factor(std::vector<Key>({key1, key2})),
52 measured_(measured),
53 noiseModel_(model) {}
54
56 virtual ~BinaryMeasurement() {}
57
60
61 Key key1() const { return keys_[0]; }
62 Key key2() const { return keys_[1]; }
63 const T &measured() const { return measured_; }
64 const SharedNoiseModel &noiseModel() const { return noiseModel_; }
65
69
70 void print(const std::string &s, const KeyFormatter &keyFormatter =
71 DefaultKeyFormatter) const override {
72 std::cout << s << "BinaryMeasurement(" << keyFormatter(this->key1()) << ","
73 << keyFormatter(this->key2()) << ")\n";
74 traits<T>::Print(measured_, " measured: ");
75 this->noiseModel_->print(" noise model: ");
76 }
77
78 bool equals(const BinaryMeasurement &expected, double tol = 1e-9) const {
79 const BinaryMeasurement<T> *e =
80 dynamic_cast<const BinaryMeasurement<T> *>(&expected);
81 return e != nullptr && Factor::equals(*e) &&
82 traits<T>::Equals(this->measured_, e->measured_, tol) &&
83 noiseModel_->equals(*expected.noiseModel());
84 }
86};
87} // namespace gtsam
Concept check for values that can be used in unit tests.
The base class for all factors.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
noiseModel::Base::shared_ptr SharedNoiseModel
Note, deliberately not in noiseModel namespace.
Definition: NoiseModel.h:736
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
A manifold defines a space in which there is a notion of a linear tangent space that can be centered ...
Definition: concepts.h:30
Definition: Testable.h:58
Template to create a binary predicate.
Definition: Testable.h:111
This is the base class for all factor types.
Definition: Factor.h:56
KeyVector keys_
The keys involved in this factor.
Definition: Factor.h:73
Factor()
Default constructor for I/O.
Definition: Factor.h:79
bool equals(const This &other, double tol=1e-9) const
check equality
Definition: Factor.cpp:42
Definition: BinaryMeasurement.h:36
void print(const std::string &s, const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
print
Definition: BinaryMeasurement.h:70
virtual ~BinaryMeasurement()
Destructor.
Definition: BinaryMeasurement.h:56