115 lines
4.3 KiB
C++
115 lines
4.3 KiB
C++
/*
|
|
* Copyright 2016 The Cartographer Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef CARTOGRAPHER_MAPPING_2D_SPARSE_POSE_GRAPH_OPTIMIZATION_PROBLEM_H_
|
|
#define CARTOGRAPHER_MAPPING_2D_SPARSE_POSE_GRAPH_OPTIMIZATION_PROBLEM_H_
|
|
|
|
#include <array>
|
|
#include <deque>
|
|
#include <map>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
#include "Eigen/Core"
|
|
#include "Eigen/Geometry"
|
|
#include "cartographer/common/port.h"
|
|
#include "cartographer/common/time.h"
|
|
#include "cartographer/mapping/id.h"
|
|
#include "cartographer/mapping/sparse_pose_graph.h"
|
|
#include "cartographer/mapping/sparse_pose_graph/proto/optimization_problem_options.pb.h"
|
|
#include "cartographer/sensor/imu_data.h"
|
|
#include "cartographer/sensor/map_by_time.h"
|
|
#include "cartographer/sensor/odometry_data.h"
|
|
#include "cartographer/transform/timestamped_transform.h"
|
|
|
|
namespace cartographer {
|
|
namespace mapping_2d {
|
|
namespace sparse_pose_graph {
|
|
|
|
struct NodeData {
|
|
common::Time time;
|
|
transform::Rigid2d initial_pose;
|
|
transform::Rigid2d pose;
|
|
Eigen::Quaterniond gravity_alignment;
|
|
};
|
|
|
|
struct SubmapData {
|
|
transform::Rigid2d global_pose;
|
|
};
|
|
|
|
// Implements the SPA loop closure method.
|
|
class OptimizationProblem {
|
|
public:
|
|
using Constraint = mapping::SparsePoseGraph::Constraint;
|
|
|
|
explicit OptimizationProblem(
|
|
const mapping::sparse_pose_graph::proto::OptimizationProblemOptions&
|
|
options);
|
|
~OptimizationProblem();
|
|
|
|
OptimizationProblem(const OptimizationProblem&) = delete;
|
|
OptimizationProblem& operator=(const OptimizationProblem&) = delete;
|
|
|
|
void AddImuData(int trajectory_id, const sensor::ImuData& imu_data);
|
|
void AddOdometerData(int trajectory_id,
|
|
const sensor::OdometryData& odometry_data);
|
|
void AddTrajectoryNode(int trajectory_id, common::Time time,
|
|
const transform::Rigid2d& initial_pose,
|
|
const transform::Rigid2d& pose,
|
|
const Eigen::Quaterniond& gravity_alignment);
|
|
void InsertTrajectoryNode(const mapping::NodeId& node_id, common::Time time,
|
|
const transform::Rigid2d& initial_pose,
|
|
const transform::Rigid2d& pose,
|
|
const Eigen::Quaterniond& gravity_alignment);
|
|
void TrimTrajectoryNode(const mapping::NodeId& node_id);
|
|
void AddSubmap(int trajectory_id,
|
|
const transform::Rigid2d& global_submap_pose);
|
|
void InsertSubmap(const mapping::SubmapId& submap_id,
|
|
const transform::Rigid2d& global_submap_pose);
|
|
void TrimSubmap(const mapping::SubmapId& submap_id);
|
|
|
|
void SetMaxNumIterations(int32 max_num_iterations);
|
|
|
|
// Optimizes the global poses.
|
|
void Solve(const std::vector<Constraint>& constraints,
|
|
const std::set<int>& frozen_trajectories);
|
|
|
|
const mapping::MapById<mapping::NodeId, NodeData>& node_data() const;
|
|
const mapping::MapById<mapping::SubmapId, SubmapData>& submap_data() const;
|
|
const sensor::MapByTime<sensor::ImuData>& imu_data() const;
|
|
const sensor::MapByTime<sensor::OdometryData>& odometry_data() const;
|
|
|
|
private:
|
|
std::unique_ptr<transform::Rigid3d> InterpolateOdometry(
|
|
int trajectory_id, common::Time time) const;
|
|
// Uses odometry if available, otherwise the local SLAM results.
|
|
transform::Rigid3d ComputeRelativePose(
|
|
int trajectory_id, const NodeData& first_node_data,
|
|
const NodeData& second_node_data) const;
|
|
|
|
mapping::sparse_pose_graph::proto::OptimizationProblemOptions options_;
|
|
mapping::MapById<mapping::NodeId, NodeData> node_data_;
|
|
mapping::MapById<mapping::SubmapId, SubmapData> submap_data_;
|
|
sensor::MapByTime<sensor::ImuData> imu_data_;
|
|
sensor::MapByTime<sensor::OdometryData> odometry_data_;
|
|
};
|
|
|
|
} // namespace sparse_pose_graph
|
|
} // namespace mapping_2d
|
|
} // namespace cartographer
|
|
|
|
#endif // CARTOGRAPHER_MAPPING_2D_SPARSE_POSE_GRAPH_OPTIMIZATION_PROBLEM_H_
|