65 lines
2.0 KiB
C++
65 lines
2.0 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_TRAJECTORY_NODE_H_
|
|
#define CARTOGRAPHER_MAPPING_TRAJECTORY_NODE_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "Eigen/Core"
|
|
#include "cartographer/common/time.h"
|
|
#include "cartographer/sensor/range_data.h"
|
|
#include "cartographer/transform/rigid_transform.h"
|
|
|
|
namespace cartographer {
|
|
namespace mapping {
|
|
|
|
struct TrajectoryNode {
|
|
struct Data {
|
|
common::Time time;
|
|
|
|
// Range data in 'pose' frame.
|
|
sensor::CompressedRangeData range_data;
|
|
|
|
// Used for loop closure in 2D: voxel filtered returns in 'pose' frame.
|
|
sensor::PointCloud filtered_point_cloud;
|
|
|
|
// Used for loop closure in 3D.
|
|
sensor::PointCloud high_resolution_point_cloud;
|
|
sensor::PointCloud low_resolution_point_cloud;
|
|
|
|
// Transform from the 3D 'tracking' frame to the 'pose' frame of the range
|
|
// data, which contains roll, pitch and height for 2D. In 3D this is always
|
|
// identity.
|
|
transform::Rigid3d tracking_to_pose;
|
|
};
|
|
|
|
common::Time time() const { return constant_data->time; }
|
|
bool trimmed() const { return constant_data == nullptr; }
|
|
|
|
// This must be a shared_ptr. If the data is used for visualization while the
|
|
// node is being trimmed, it must survive until all use finishes.
|
|
std::shared_ptr<const Data> constant_data;
|
|
|
|
transform::Rigid3d pose;
|
|
};
|
|
|
|
} // namespace mapping
|
|
} // namespace cartographer
|
|
|
|
#endif // CARTOGRAPHER_MAPPING_TRAJECTORY_NODE_H_
|