2015-07-06 01:26:11 +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
|
|
|
|
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file timeSFMBAL.h
|
|
|
|
* @brief Common code for timeSFMBAL scripts
|
|
|
|
* @author Frank Dellaert
|
|
|
|
* @date July 5, 2015
|
|
|
|
*/
|
|
|
|
|
2022-02-22 00:59:01 +08:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-01 01:29:13 +08:00
|
|
|
#include <gtsam/sfm/SfmData.h>
|
2022-02-20 00:09:42 +08:00
|
|
|
#include <gtsam/slam/dataset.h>
|
2015-07-06 01:26:11 +08:00
|
|
|
#include <gtsam/nonlinear/LevenbergMarquardtOptimizer.h>
|
|
|
|
#include <gtsam/nonlinear/NonlinearFactorGraph.h>
|
|
|
|
#include <gtsam/nonlinear/Values.h>
|
|
|
|
#include <gtsam/linear/NoiseModel.h>
|
|
|
|
#include <gtsam/inference/Ordering.h>
|
|
|
|
#include <gtsam/inference/Symbol.h>
|
|
|
|
#include <gtsam/base/timing.h>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace gtsam;
|
|
|
|
using symbol_shorthand::C;
|
|
|
|
using symbol_shorthand::K;
|
|
|
|
using symbol_shorthand::P;
|
|
|
|
|
|
|
|
static bool gUseSchur = true;
|
|
|
|
static SharedNoiseModel gNoiseModel = noiseModel::Unit::Create(2);
|
|
|
|
|
|
|
|
// parse options and read BAL file
|
2020-03-07 06:59:09 +08:00
|
|
|
SfmData preamble(int argc, char* argv[]) {
|
2015-07-06 01:26:11 +08:00
|
|
|
// primitive argument parsing:
|
|
|
|
if (argc > 2) {
|
2015-07-06 02:18:45 +08:00
|
|
|
if (strcmp(argv[1], "--colamd"))
|
2015-07-06 01:26:11 +08:00
|
|
|
gUseSchur = false;
|
|
|
|
else
|
|
|
|
throw runtime_error("Usage: timeSFMBALxxx [--colamd] [BALfile]");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load BAL file
|
2020-03-07 06:59:09 +08:00
|
|
|
SfmData db;
|
2016-02-09 10:58:57 +08:00
|
|
|
string filename;
|
|
|
|
if (argc > 1)
|
|
|
|
filename = argv[argc - 1];
|
|
|
|
else
|
|
|
|
filename = findExampleDataFile("dubrovnik-16-22106-pre");
|
2022-02-01 01:29:13 +08:00
|
|
|
return SfmData::FromBalFile(filename);
|
2015-07-06 01:26:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create ordering and optimize
|
2020-03-07 06:59:09 +08:00
|
|
|
int optimize(const SfmData& db, const NonlinearFactorGraph& graph,
|
2015-07-06 02:18:45 +08:00
|
|
|
const Values& initial, bool separateCalibration = false) {
|
2015-07-06 01:26:11 +08:00
|
|
|
using symbol_shorthand::P;
|
|
|
|
|
|
|
|
// Set parameters to be similar to ceres
|
|
|
|
LevenbergMarquardtParams params;
|
|
|
|
LevenbergMarquardtParams::SetCeresDefaults(¶ms);
|
2016-06-19 14:13:59 +08:00
|
|
|
// params.setLinearSolverType("SEQUENTIAL_CHOLESKY");
|
2016-02-27 00:28:16 +08:00
|
|
|
// params.setVerbosityLM("SUMMARY");
|
2015-07-06 01:26:11 +08:00
|
|
|
|
|
|
|
if (gUseSchur) {
|
|
|
|
// Create Schur-complement ordering
|
|
|
|
Ordering ordering;
|
2022-02-01 01:46:42 +08:00
|
|
|
for (size_t j = 0; j < db.numberTracks(); j++) ordering.push_back(P(j));
|
|
|
|
for (size_t i = 0; i < db.numberCameras(); i++) {
|
2015-07-06 02:18:45 +08:00
|
|
|
ordering.push_back(C(i));
|
|
|
|
if (separateCalibration) ordering.push_back(K(i));
|
|
|
|
}
|
2015-07-06 01:26:11 +08:00
|
|
|
params.setOrdering(ordering);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optimize
|
2016-02-27 00:28:16 +08:00
|
|
|
{
|
|
|
|
gttic_(optimize);
|
|
|
|
LevenbergMarquardtOptimizer lm(graph, initial, params);
|
|
|
|
Values result = lm.optimize();
|
|
|
|
}
|
2015-07-06 01:26:11 +08:00
|
|
|
|
|
|
|
tictoc_finishedIteration_();
|
|
|
|
tictoc_print_();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|