Skip to content
Snippets Groups Projects
Commit 255df9cc authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Add toppology

parent f3388ce1
No related branches found
No related tags found
3 merge requests!39release after RAL,!38After 2nd RAL submission,!15Resolve "factor topologies"
......@@ -25,6 +25,11 @@ class FactorIMU : public FactorAutodiff<FactorIMU, 15, 3, 4, 3, 6, 3, 4, 3, 6>
virtual ~FactorIMU() = default;
virtual std::string getTopology() const override
{
return std::string("MOTION");
}
/** \brief : compute the residual from the state blocks being iterated by the solver.
-> computes the expected measurement
-> corrects actual measurement with new bias
......
......@@ -29,6 +29,11 @@ class FactorFixBias: public FactorAutodiff<FactorFixBias,6,3,3>
virtual ~FactorFixBias() = default;
virtual std::string getTopology() const override
{
return std::string("ABS");
}
template<typename T>
bool operator ()(const T* const _ab, const T* const _wb, T* _residuals) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment