documenting member variables

release/4.3a0
akrishnan86 2020-12-01 09:10:32 -08:00
parent 602db46f44
commit 6d2e306aa8
1 changed files with 6 additions and 0 deletions

View File

@ -54,8 +54,14 @@ class TranslationRecovery {
using TranslationEdges = std::vector<BinaryMeasurement<Unit3>>;
private:
// Translation directions between camera pairs.
TranslationEdges relativeTranslations_;
// Parameters used by the LM Optimizer.
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_;
public: