gtsam/examples/Pose3SLAMExample_initialize...

69 lines
2.1 KiB
C++
Raw Normal View History

2014-08-26 04:01:53 +08:00
/* ----------------------------------------------------------------------------
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
* Atlanta, Georgia 30332-0415
* All Rights Reserved
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
* See LICENSE for the license information
* -------------------------------------------------------------------------- */
/**
2020-05-10 07:08:31 +08:00
* @file Pose3SLAMExample_initializePose3Chordal.cpp
2014-08-26 04:01:53 +08:00
* @brief A 3D Pose SLAM example that reads input from g2o, and initializes the Pose3 using InitializePose3
2020-05-10 07:08:31 +08:00
* Syntax for the script is ./Pose3SLAMExample_initializePose3Chordal input.g2o output.g2o
2014-08-26 04:01:53 +08:00
* @date Aug 25, 2014
* @author Luca Carlone
*/
#include <gtsam/slam/InitializePose3.h>
#include <gtsam/slam/dataset.h>
2014-08-26 04:36:58 +08:00
#include <gtsam/slam/BetweenFactor.h>
2014-08-26 04:01:53 +08:00
#include <fstream>
using namespace std;
using namespace gtsam;
2020-05-10 07:08:31 +08:00
int main(const int argc, const char* argv[]) {
2014-08-26 04:01:53 +08:00
// Read graph from file
string g2oFile;
if (argc < 2)
g2oFile = findExampleDataFile("pose3example.txt");
else
g2oFile = argv[1];
NonlinearFactorGraph::shared_ptr graph;
Values::shared_ptr initial;
bool is3D = true;
2023-01-19 08:32:29 +08:00
std::tie(graph, initial) = readG2o(g2oFile, is3D);
2014-08-26 04:01:53 +08:00
2014-08-26 04:36:58 +08:00
// Add prior on the first key
2020-05-10 07:08:31 +08:00
auto priorModel = noiseModel::Diagonal::Variances(
(Vector(6) << 1e-6, 1e-6, 1e-6, 1e-4, 1e-4, 1e-4).finished());
2014-08-26 04:36:58 +08:00
Key firstKey = 0;
2023-01-23 04:18:09 +08:00
for (const auto key : initial->keys()) {
2014-08-26 04:36:58 +08:00
std::cout << "Adding prior to g2o file " << std::endl;
2023-01-23 04:18:09 +08:00
firstKey = key;
2020-04-13 01:10:09 +08:00
graph->addPrior(firstKey, Pose3(), priorModel);
2014-08-26 04:36:58 +08:00
break;
}
2014-08-26 04:01:53 +08:00
std::cout << "Initializing Pose3 - chordal relaxation" << std::endl;
Values initialization = InitializePose3::initialize(*graph);
2014-08-26 04:01:53 +08:00
std::cout << "done!" << std::endl;
if (argc < 3) {
initialization.print("initialization");
} else {
const string outputFile = argv[2];
2020-05-10 07:08:31 +08:00
std::cout << "Writing results to file: " << outputFile << std::endl;
NonlinearFactorGraph::shared_ptr graphNoKernel;
Values::shared_ptr initial2;
2023-01-19 08:32:29 +08:00
std::tie(graphNoKernel, initial2) = readG2o(g2oFile);
writeG2o(*graphNoKernel, initialization, outputFile);
2014-08-26 04:01:53 +08:00
std::cout << "done! " << std::endl;
2014-08-26 04:36:58 +08:00
}
2014-08-26 04:01:53 +08:00
return 0;
}