mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
Camera refactoring (#315)
* Camera Refactoring part 1 (Mac OS X) * fixed camera*** -> Camera*** * Fixed build for cameras Zed/RealSense/RealSense2 * increased version to 0.17.7 * fixed build for cameras K4W2 and FlyCapture2
This commit is contained in:
129
corelib/src/optimizer/vertigo/gtsam/switchVariableSigmoid.h
Normal file
129
corelib/src/optimizer/vertigo/gtsam/switchVariableSigmoid.h
Normal file
@@ -0,0 +1,129 @@
|
||||
/*
|
||||
* switchVariableSigmoid.h
|
||||
*
|
||||
* Created on: 08.08.2012
|
||||
* Author: niko
|
||||
*/
|
||||
|
||||
#ifndef SWITCHVARIABLESIGMOID_H_
|
||||
#define SWITCHVARIABLESIGMOID_H_
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <gtsam/base/DerivedValue.h>
|
||||
#include <gtsam/base/Lie.h>
|
||||
|
||||
namespace vertigo {
|
||||
|
||||
/**
|
||||
* SwitchVariableSigmoid is a wrapper around double to allow it to be a Lie type
|
||||
*/
|
||||
struct SwitchVariableSigmoid : public gtsam::DerivedValue<SwitchVariableSigmoid> {
|
||||
|
||||
/** default constructor */
|
||||
SwitchVariableSigmoid() : d_(10.0) {};
|
||||
|
||||
/** wrap a double */
|
||||
SwitchVariableSigmoid(double d) : d_(d) {
|
||||
if (d_ < -10.0) d_=-10.0;
|
||||
else if(d_>10.0) d_=10.0;
|
||||
};
|
||||
|
||||
/** access the underlying value */
|
||||
double value() const { return d_; }
|
||||
|
||||
/** print @param s optional string naming the object */
|
||||
inline void print(const std::string& name="") const {
|
||||
std::cout << name << ": " << d_ << std::endl;
|
||||
}
|
||||
|
||||
/** equality up to tolerance */
|
||||
inline bool equals(const SwitchVariableSigmoid& expected, double tol=1e-5) const {
|
||||
return fabs(expected.d_ - d_) <= tol;
|
||||
}
|
||||
|
||||
// Manifold requirements
|
||||
|
||||
/** Returns dimensionality of the tangent space */
|
||||
inline size_t dim() const { return 1; }
|
||||
inline static size_t Dim() { return 1; }
|
||||
|
||||
/** Update the SwitchVariableSigmoid with a tangent space update */
|
||||
inline SwitchVariableSigmoid retract(const gtsam::Vector& v) const {
|
||||
double x = value() + v(0);
|
||||
|
||||
if (x>10.0) x=10.0;
|
||||
else if (x<-10.0) x=-10.0;
|
||||
|
||||
return SwitchVariableSigmoid(x);
|
||||
}
|
||||
|
||||
/** @return the local coordinates of another object */
|
||||
inline gtsam::Vector localCoordinates(const SwitchVariableSigmoid& t2) const { return gtsam::Vector1(t2.value() - value()); }
|
||||
|
||||
// Group requirements
|
||||
|
||||
/** identity */
|
||||
inline static SwitchVariableSigmoid identity() {
|
||||
return SwitchVariableSigmoid();
|
||||
}
|
||||
|
||||
/** compose with another object */
|
||||
inline SwitchVariableSigmoid compose(const SwitchVariableSigmoid& p) const {
|
||||
return SwitchVariableSigmoid(d_ + p.d_);
|
||||
}
|
||||
|
||||
/** between operation */
|
||||
inline SwitchVariableSigmoid between(const SwitchVariableSigmoid& l2,
|
||||
boost::optional<gtsam::Matrix&> H1=boost::none,
|
||||
boost::optional<gtsam::Matrix&> H2=boost::none) const {
|
||||
if(H1) *H1 = -gtsam::eye(1);
|
||||
if(H2) *H2 = gtsam::eye(1);
|
||||
return SwitchVariableSigmoid(l2.value() - value());
|
||||
}
|
||||
|
||||
/** invert the object and yield a new one */
|
||||
inline SwitchVariableSigmoid inverse() const {
|
||||
return SwitchVariableSigmoid(-1.0 * value());
|
||||
}
|
||||
|
||||
// Lie functions
|
||||
|
||||
/** Expmap around identity */
|
||||
static inline SwitchVariableSigmoid Expmap(const gtsam::Vector& v) { return SwitchVariableSigmoid(v(0)); }
|
||||
|
||||
/** Logmap around identity - just returns with default cast back */
|
||||
static inline gtsam::Vector Logmap(const SwitchVariableSigmoid& p) { return gtsam::Vector1(p.value()); }
|
||||
|
||||
private:
|
||||
double d_;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
namespace gtsam {
|
||||
// Define Key to be Testable by specializing gtsam::traits
|
||||
template<typename T> struct traits;
|
||||
template<> struct traits<vertigo::SwitchVariableSigmoid> {
|
||||
static void Print(const vertigo::SwitchVariableSigmoid& key, const std::string& str = "") {
|
||||
key.print(str);
|
||||
}
|
||||
static bool Equals(const vertigo::SwitchVariableSigmoid& key1, const vertigo::SwitchVariableSigmoid& key2, double tol = 1e-8) {
|
||||
return key1.equals(key2, tol);
|
||||
}
|
||||
static int GetDimension(const vertigo::SwitchVariableSigmoid & key) {return key.Dim();}
|
||||
|
||||
typedef OptionalJacobian<3, 3> ChartJacobian;
|
||||
typedef gtsam::Vector TangentVector;
|
||||
static TangentVector Local(const vertigo::SwitchVariableSigmoid& origin, const vertigo::SwitchVariableSigmoid& other,
|
||||
ChartJacobian Horigin = boost::none, ChartJacobian Hother = boost::none) {
|
||||
return origin.localCoordinates(other);
|
||||
}
|
||||
static vertigo::SwitchVariableSigmoid Retract(const vertigo::SwitchVariableSigmoid& g, const TangentVector& v,
|
||||
ChartJacobian H1 = boost::none, ChartJacobian H2 = boost::none) {
|
||||
return g.retract(v);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* SWITCHVARIABLESIGMOID_H_ */
|
||||
Reference in New Issue
Block a user