gtsam 4.1.1
gtsam
CustomFactor.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
18#pragma once
19
21
22using namespace gtsam;
23
24namespace gtsam {
25
26using JacobianVector = std::vector<Matrix>;
27
28class CustomFactor;
29
30/*
31 * NOTE
32 * ==========
33 * pybind11 will invoke a copy if this is `JacobianVector &`, and modifications in Python will not be reflected.
34 *
35 * This is safe because this is passing a const pointer, and pybind11 will maintain the `std::vector` memory layout.
36 * Thus the pointer will never be invalidated.
37 */
38using CustomErrorFunction = std::function<Vector(const CustomFactor &, const Values &, const JacobianVector *)>;
39
48protected:
49 CustomErrorFunction error_function_;
50
51protected:
52
53 using Base = NoiseModelFactor;
54 using This = CustomFactor;
55
56public:
57
61 CustomFactor() = default;
62
69 CustomFactor(const SharedNoiseModel &noiseModel, const KeyVector &keys, const CustomErrorFunction &errorFunction) :
71 this->error_function_ = errorFunction;
72 }
73
74 ~CustomFactor() override = default;
75
80 Vector unwhitenedError(const Values &x, boost::optional<std::vector<Matrix> &> H = boost::none) const override;
81
83 void print(const std::string &s,
84 const KeyFormatter &keyFormatter = DefaultKeyFormatter) const override;
85
89 bool sendable() const override {
90 return false;
91 }
92
93private:
94
97 template<class ARCHIVE>
98 void serialize(ARCHIVE &ar, const unsigned int /*version*/) {
99 ar & boost::serialization::make_nvp("CustomFactor",
100 boost::serialization::base_object<Base>(*this));
101 }
102};
103
104}
Non-linear factor base classes.
Global functions in a separate testing namespace.
Definition: chartTesting.h:28
FastVector< Key > KeyVector
Define collection type once and for all - also used in wrappers.
Definition: Key.h:86
noiseModel::Base::shared_ptr SharedNoiseModel
Note, deliberately not in noiseModel namespace.
Definition: NoiseModel.h:736
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
const KeyVector & keys() const
Access the factor's involved variable keys.
Definition: Factor.h:125
Definition: CustomFactor.h:47
Vector unwhitenedError(const Values &x, boost::optional< std::vector< Matrix > & > H=boost::none) const override
Calls the errorFunction closure, which is a std::function object One can check if a derivative is nee...
Definition: CustomFactor.cpp:25
CustomFactor(const SharedNoiseModel &noiseModel, const KeyVector &keys, const CustomErrorFunction &errorFunction)
Constructor.
Definition: CustomFactor.h:69
CustomFactor()=default
Default Constructor for I/O.
friend class boost::serialization::access
Serialization function.
Definition: CustomFactor.h:96
bool sendable() const override
Mark not sendable.
Definition: CustomFactor.h:89
void print(const std::string &s, const KeyFormatter &keyFormatter=DefaultKeyFormatter) const override
print
Definition: CustomFactor.cpp:59
A nonlinear sum-of-squares factor with a zero-mean noise model implementing the density Templated on...
Definition: NonlinearFactor.h:162
NoiseModelFactor()
Default constructor for I/O only.
Definition: NonlinearFactor.h:177
const SharedNoiseModel & noiseModel() const
access to the noise model
Definition: NonlinearFactor.h:211
A non-templated config holding any types of Manifold-group elements.
Definition: Values.h:63