OptimizerGTSAM.h
Go to the documentation of this file.
1 /*
2 Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of the Universite de Sherbrooke nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
20 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
28 #ifndef OPTIMIZERGTSAM_H_
29 #define OPTIMIZERGTSAM_H_
30 
31 #include <rtabmap/core/Optimizer.h>
32 
33 namespace gtsam {
34  class ISAM2;
35 }
36 
37 namespace rtabmap {
38 
39 class RTABMAP_CORE_EXPORT OptimizerGTSAM : public Optimizer
40 {
41 public:
42  static bool available();
43 
44 public:
45  OptimizerGTSAM(const ParametersMap & parameters = ParametersMap());
46  virtual ~OptimizerGTSAM();
47 
48  virtual Type type() const {return kTypeGTSAM;}
49 
50  virtual void parseParameters(const ParametersMap & parameters);
51 
52  virtual std::map<int, Transform> optimize(
53  int rootId,
54  const std::map<int, Transform> & poses,
55  const std::multimap<int, Link> & edgeConstraints,
56  cv::Mat & outputCovariance,
57  std::list<std::map<int, Transform> > * intermediateGraphes = 0,
58  double * finalError = 0,
59  int * iterationsDone = 0);
60 
61 private:
63 
66  ConstraintToFactor(int _from, int _to, std::uint64_t _factorIndice)
67  {
68  from = _from;
69  to = _to;
70  factorIndice = _factorIndice;
71  }
72  int from;
73  int to;
75  };
76 
77  std::vector<ConstraintToFactor> lastAddedConstraints_;
79  std::set<int> addedPoses_;
80  std::pair<int, std::uint64_t> lastRootFactorIndex_;
81 };
82 
83 } /* namespace rtabmap */
84 #endif /* OPTIMIZERGTSAM_H_ */
rtabmap::OptimizerGTSAM::isam2_
gtsam::ISAM2 * isam2_
Definition: OptimizerGTSAM.h:64
gtsam::ISAM2
rtabmap::OptimizerGTSAM::internalOptimizerType_
int internalOptimizerType_
Definition: OptimizerGTSAM.h:62
rtabmap::OptimizerGTSAM::type
virtual Type type() const
Definition: OptimizerGTSAM.h:48
rtabmap::OptimizerGTSAM::ConstraintToFactor::ConstraintToFactor
ConstraintToFactor(int _from, int _to, std::uint64_t _factorIndice)
Definition: OptimizerGTSAM.h:66
rtabmap::Optimizer
Definition: Optimizer.h:61
glm::uint64_t
detail::uint64 uint64_t
Definition: fwd.hpp:920
rtabmap::ParametersMap
std::map< std::string, std::string > ParametersMap
Definition: Parameters.h:43
rtabmap::OptimizerGTSAM::ConstraintToFactor::to
int to
Definition: OptimizerGTSAM.h:73
rtabmap::OptimizerGTSAM::ConstraintToFactor
Definition: OptimizerGTSAM.h:65
optimize
gtsam.ISAM2 optimize(List[GpsMeasurement] gps_measurements, List[ImuMeasurement] imu_measurements, gtsam.noiseModel.Diagonal sigma_init_x, gtsam.noiseModel.Diagonal sigma_init_v, gtsam.noiseModel.Diagonal sigma_init_b, gtsam.noiseModel.Diagonal noise_model_gps, KittiCalibration kitti_calibration, int first_gps_pose, int gps_skip)
rtabmap::OptimizerGTSAM
Definition: OptimizerGTSAM.h:39
rtabmap::OptimizerGTSAM::lastAddedConstraints_
std::vector< ConstraintToFactor > lastAddedConstraints_
Definition: OptimizerGTSAM.h:77
Type
rtabmap::OptimizerGTSAM::ConstraintToFactor::factorIndice
std::uint64_t factorIndice
Definition: OptimizerGTSAM.h:74
rtabmap::OptimizerGTSAM::lastRootFactorIndex_
std::pair< int, std::uint64_t > lastRootFactorIndex_
Definition: OptimizerGTSAM.h:80
Optimizer.h
gtsam
rtabmap::OptimizerGTSAM::lastSwitchId_
int lastSwitchId_
Definition: OptimizerGTSAM.h:78
rtabmap::OptimizerGTSAM::ConstraintToFactor::from
int from
Definition: OptimizerGTSAM.h:72
rtabmap::OptimizerGTSAM::addedPoses_
std::set< int > addedPoses_
Definition: OptimizerGTSAM.h:79
rtabmap
Definition: CameraARCore.cpp:35


rtabmap
Author(s): Mathieu Labbe
autogenerated on Thu Jul 25 2024 02:50:14