documenting member variables
parent
602db46f44
commit
6d2e306aa8
|
@ -54,8 +54,14 @@ class TranslationRecovery {
|
||||||
using TranslationEdges = std::vector<BinaryMeasurement<Unit3>>;
|
using TranslationEdges = std::vector<BinaryMeasurement<Unit3>>;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// Translation directions between camera pairs.
|
||||||
TranslationEdges relativeTranslations_;
|
TranslationEdges relativeTranslations_;
|
||||||
|
|
||||||
|
// Parameters used by the LM Optimizer.
|
||||||
LevenbergMarquardtParams params_;
|
LevenbergMarquardtParams params_;
|
||||||
|
|
||||||
|
// Map from a key in the graph to a set of keys that share the same
|
||||||
|
// translation.
|
||||||
std::map<Key, std::set<Key>> sameTranslationNodes_;
|
std::map<Key, std::set<Key>> sameTranslationNodes_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue