template<typename PointT>
class pcl::registration::LUM< PointT >
Globally Consistent Scan Matching based on an algorithm by Lu and Milios.
A GraphSLAM algorithm where registration data is managed in a graph:
-
Vertices represent poses and hold the point cloud data and relative transformations.
-
Edges represent pose constraints and hold the correspondence data between two point clouds.
Computation uses the first point cloud in the SLAM graph as a reference pose and attempts to align all other point clouds to it simultaneously. For more information:
-
F. Lu, E. Milios, Globally Consistent Range Scan Alignment for Environment Mapping, Autonomous Robots 4, April 1997
-
Dorit Borrmann, Jan Elseberg, Kai Lingemann, Andreas Nüchter, and Joachim Hertzberg, The Efficient Extension of Globally Consistent Scan Matching to 6 DoF, In Proceedings of the 4th International Symposium on 3D Data Processing, Visualization and Transmission (3DPVT '08), June 2008
Usage example:
corrs_0_to_1 = someAlgo (cloud_0, cloud_1);
corrs_1_to_2 = someAlgo (cloud_1, cloud_2);
{
}
Globally Consistent Scan Matching based on an algorithm by Lu and Milios.
void compute()
Perform LUM's globally consistent scan matching.
PointCloudPtr getPointCloud(const Vertex &vertex) const
Return a point cloud from one of the SLAM graph's vertices.
SLAMGraph::vertices_size_type getNumVertices() const
Get the number of vertices in the SLAM graph.
void setConvergenceThreshold(float convergence_threshold)
Set the convergence threshold for the compute() method.
void setMaxIterations(int max_iterations)
Set the maximum number of iterations for the compute() method.
PointCloudPtr getConcatenatedCloud() const
Return a concatenated point cloud of all the SLAM graph's point clouds compounded onto their current ...
Vertex addPointCloud(const PointCloudPtr &cloud, const Eigen::Vector6f &pose=Eigen::Vector6f::Zero())
Add a new point cloud to the SLAM graph.
Eigen::Affine3f getTransformation(const Vertex &vertex) const
Return a pose estimate from one of the SLAM graph's vertices as an affine transformation matrix.
void setCorrespondences(const Vertex &source_vertex, const Vertex &target_vertex, const pcl::CorrespondencesPtr &corrs)
Add/change a set of correspondences for one of the SLAM graph's edges.
- Author
- Frits Florentinus, Jochen Sprickerhof
Definition at line 108 of file lum.h.
template<typename PointT >
Add a new point cloud to the SLAM graph.
This method will add a new vertex to the SLAM graph and attach a point cloud to that vertex. Optionally you can specify a pose estimate for this point cloud. A vertex' pose is always relative to the first vertex in the SLAM graph, i.e. the first point cloud that was added. Because this first vertex is the reference, you can not set a pose estimate for this vertex. Providing pose estimates to the vertices in the SLAM graph will reduce overall computation time of LUM.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] | cloud | The new point cloud. |
[in] | pose | (optional) The pose estimate relative to the reference pose (first point cloud that was added). |
- Returns
- The vertex descriptor of the newly created vertex.
Definition at line 101 of file lum.hpp.
template<typename PointT >
Perform LUM's globally consistent scan matching.
Computation uses the first point cloud in the SLAM graph as a reference pose and attempts to align all other point clouds to it simultaneously.
Things to keep in mind:
-
Only those parts of the graph connected to the reference pose will properly align to it.
-
All sets of correspondences should span the same space and need to be sufficient to determine a rigid transformation.
-
The algorithm draws it strength from loops in the graph because it will distribute errors evenly amongst those loops.
Computation ends when either of the following conditions hold:
Computation will change the pose estimates for the vertices of the SLAM graph, not the point clouds attached to them. The results can be retrieved with getPose(), getTransformation(), getTransformedCloud() or getConcatenatedCloud().
Definition at line 221 of file lum.hpp.
References pcl::B.
template<typename PointT >
Get the convergence threshold for the compute() method.
When the compute() method computes the new poses relative to the old poses, it will determine the length of the difference vector. When the average length of all difference vectors becomes less than the convergence_threshold the convergence is assumed to be met.
- Returns
- The current convergence threshold (default = 0.0).
Definition at line 94 of file lum.hpp.
template<typename PointT >
Set the convergence threshold for the compute() method.
When the compute() method computes the new poses relative to the old poses, it will determine the length of the difference vector. When the average length of all difference vectors becomes less than the convergence_threshold the convergence is assumed to be met.
- Parameters
-
[in] | convergence_threshold | The new convergence threshold (default = 0.0). |
Definition at line 87 of file lum.hpp.
template<typename PointT >
Add/change a set of correspondences for one of the SLAM graph's edges.
The edges in the SLAM graph are directional and point from source vertex to target vertex. The query indices of the correspondences, index the points at the source vertex' point cloud. The matching indices of the correspondences, index the points at the target vertex' point cloud. If no edge was present at the specified location, this method will add a new edge to the SLAM graph and attach the correspondences to that edge. If the edge was already present, this method will overwrite the correspondence information of that edge and will not alter the SLAM graph structure.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] | source_vertex | The vertex descriptor of the correspondences' source point cloud. |
[in] | target_vertex | The vertex descriptor of the correspondences' target point cloud. |
[in] | corrs | The new set of correspondences for that edge. |
Definition at line 179 of file lum.hpp.
template<typename PointT >
Change a pose estimate on one of the SLAM graph's vertices.
A vertex' pose is always relative to the first vertex in the SLAM graph, i.e. the first point cloud that was added. Because this first vertex is the reference, you can not set a pose estimate for this vertex. Providing pose estimates to the vertices in the SLAM graph will reduce overall computation time of LUM.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] | vertex | The vertex descriptor of which to set the pose estimate. |
[in] | pose | The new pose estimate for that vertex. |
Definition at line 142 of file lum.hpp.