Pose2SLAMExample_g2o.cpp
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 
21 #include <gtsam/slam/dataset.h>
22 #include <gtsam/geometry/Pose2.h>
24 #include <fstream>
25 
26 using namespace std;
27 using namespace gtsam;
28 
29 // HOWTO: ./Pose2SLAMExample_g2o inputFile outputFile (maxIterations) (tukey/huber)
30 int main(const int argc, const char *argv[]) {
31  string kernelType = "none";
32  int maxIterations = 100; // default
33  string g2oFile = findExampleDataFile("noisyToyGraph.txt"); // default
34 
35  // Parse user's inputs
36  if (argc > 1) {
37  g2oFile = argv[1]; // input dataset filename
38  }
39  if (argc > 3) {
40  maxIterations = atoi(argv[3]); // user can specify either tukey or huber
41  }
42  if (argc > 4) {
43  kernelType = argv[4]; // user can specify either tukey or huber
44  }
45 
46  // reading file and creating factor graph
48  Values::shared_ptr initial;
49  bool is3D = false;
50  if (kernelType.compare("none") == 0) {
51  boost::tie(graph, initial) = readG2o(g2oFile, is3D);
52  }
53  if (kernelType.compare("huber") == 0) {
54  std::cout << "Using robust kernel: huber " << std::endl;
55  boost::tie(graph, initial) =
56  readG2o(g2oFile, is3D, KernelFunctionTypeHUBER);
57  }
58  if (kernelType.compare("tukey") == 0) {
59  std::cout << "Using robust kernel: tukey " << std::endl;
60  boost::tie(graph, initial) =
61  readG2o(g2oFile, is3D, KernelFunctionTypeTUKEY);
62  }
63 
64  // Add prior on the pose having index (key) = 0
65  auto priorModel = //
66  noiseModel::Diagonal::Variances(Vector3(1e-6, 1e-6, 1e-8));
67  graph->addPrior(0, Pose2(), priorModel);
68  std::cout << "Adding prior on pose 0 " << std::endl;
69 
71  params.setVerbosity("TERMINATION");
72  if (argc > 3) {
74  std::cout << "User required to perform maximum " << params.maxIterations
75  << " iterations " << std::endl;
76  }
77 
78  std::cout << "Optimizing the factor graph" << std::endl;
79  GaussNewtonOptimizer optimizer(*graph, *initial, params);
80  Values result = optimizer.optimize();
81  std::cout << "Optimization complete" << std::endl;
82 
83  std::cout << "initial error=" << graph->error(*initial) << std::endl;
84  std::cout << "final error=" << graph->error(result) << std::endl;
85 
86  if (argc < 3) {
87  result.print("result");
88  } else {
89  const string outputFile = argv[2];
90  std::cout << "Writing results to file: " << outputFile << std::endl;
92  Values::shared_ptr initial2;
93  boost::tie(graphNoKernel, initial2) = readG2o(g2oFile);
94  writeG2o(*graphNoKernel, result, outputFile);
95  std::cout << "done! " << std::endl;
96  }
97  return 0;
98 }
void writeG2o(const NonlinearFactorGraph &graph, const Values &estimate, const string &filename)
This function writes a g2o file from NonlinearFactorGraph and a Values structure. ...
Definition: dataset.cpp:630
virtual const Values & optimize()
Eigen::Vector3d Vector3
Definition: Vector.h:43
Values initial
Definition: Half.h:150
NonlinearFactorGraph graph
string findExampleDataFile(const string &name)
Definition: dataset.cpp:65
boost::shared_ptr< This > shared_ptr
Values result
void setVerbosity(const std::string &src)
Array< double, 1, 3 > e(1./3., 0.5, 2.)
static SmartStereoProjectionParams params
string outputFile
traits
Definition: chartTesting.h:28
void print(const std::string &str="", const KeyFormatter &keyFormatter=DefaultKeyFormatter) const
Definition: Values.cpp:77
int main(const int argc, const char *argv[])
2D Pose
GraphAndValues readG2o(const string &g2oFile, const bool is3D, KernelFunctionType kernelFunctionType)
This function parses a g2o file and stores the measurements into a NonlinearFactorGraph and the initi...
Definition: dataset.cpp:615
utility functions for loading datasets
size_t maxIterations
The maximum iterations to stop iterating (default 100)


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:43:27