Globally Consistent Scan Matching based on an algorithm by Lu and Milios. More...
#include <pcl/registration/lum.h>
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);
{
}
- Author
- Frits Florentinus, Jochen Sprickerhof
Definition at line 108 of file lum.h.
ConstPtr
template<typename PointT >
Edge
template<typename PointT >
PointCloud
template<typename PointT >
PointCloudConstPtr
template<typename PointT >
PointCloudPtr
template<typename PointT >
Ptr
template<typename PointT >
SLAMGraph
template<typename PointT >
SLAMGraphPtr
template<typename PointT >
Vertex
template<typename PointT >
LUM()
template<typename PointT >
Empty constructor.
Definition at line 142 of file lum.h.
addPointCloud()
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.
compute()
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.
computeEdge()
template<typename PointT >
getConcatenatedCloud()
template<typename PointT >
Return a concatenated point cloud of all the SLAM graph's point clouds compounded onto their current pose estimates.
- Returns
- The concatenated transformed point clouds of the entire SLAM graph.
Definition at line 294 of file lum.hpp.
References pcl::getTransformation(), and pcl::transformPointCloud().
getConvergenceThreshold()
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.
getCorrespondences()
template<typename PointT >
Return a set of correspondences from one of the SLAM graph's edges.
- 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. |
- Returns
- The current set of correspondences of that edge.
Definition at line 200 of file lum.hpp.
getLoopGraph()
template<typename PointT >
Get the internal SLAM graph structure.
All data used and produced by LUM is stored in this boost::adjacency_list. It is recommended to use the LUM class itself to build the graph. This method could otherwise be useful for managing several SLAM graphs in one instance of LUM.
- Returns
- The current SLAM graph.
Definition at line 59 of file lum.hpp.
getMaxIterations()
template<typename PointT >
Get the maximum number of iterations for the compute() method.
The compute() method finishes when max_iterations are met or when the convergence criteria is met.
- Returns
- The current maximum number of iterations (default = 5).
Definition at line 80 of file lum.hpp.
getNumVertices()
template<typename PointT >
Get the number of vertices in the SLAM graph.
- Returns
- The current number of vertices in the SLAM graph.
Definition at line 66 of file lum.hpp.
getPointCloud()
template<typename PointT >
Return a point cloud from one of the SLAM graph's vertices.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] |
vertex |
The vertex descriptor of which to return the point cloud. |
- Returns
- The current point cloud for that vertex.
Definition at line 130 of file lum.hpp.
getPose()
template<typename PointT >
Return a pose estimate from one of the SLAM graph's vertices.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] |
vertex |
The vertex descriptor of which to return the pose estimate. |
- Returns
- The current pose estimate of that vertex.
Definition at line 159 of file lum.hpp.
getTransformation()
template<typename PointT >
Return a pose estimate from one of the SLAM graph's vertices as an affine transformation matrix.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] |
vertex |
The vertex descriptor of which to return the transformation matrix. |
- Returns
- The current transformation matrix of that vertex.
Definition at line 171 of file lum.hpp.
References pcl::getTransformation().
getTransformedCloud()
template<typename PointT >
Return a point cloud from one of the SLAM graph's vertices compounded onto its current pose estimate.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] |
vertex |
The vertex descriptor of which to return the transformed point cloud. |
- Returns
- The transformed point cloud of that vertex.
Definition at line 285 of file lum.hpp.
References pcl::getTransformation(), and pcl::transformPointCloud().
incidenceCorrection()
template<typename PointT >
Returns a pose corrected 6DoF incidence matrix.
Definition at line 445 of file lum.hpp.
setConvergenceThreshold()
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.
setCorrespondences()
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.
setLoopGraph()
template<typename PointT >
Set the internal SLAM graph structure.
All data used and produced by LUM is stored in this boost::adjacency_list. It is recommended to use the LUM class itself to build the graph. This method could otherwise be useful for managing several SLAM graphs in one instance of LUM.
- Parameters
-
[in] |
slam_graph |
The new SLAM graph. |
Definition at line 52 of file lum.hpp.
setMaxIterations()
template<typename PointT >
Set the maximum number of iterations for the compute() method.
The compute() method finishes when max_iterations are met or when the convergence criteria is met.
- Parameters
-
[in] |
max_iterations |
The new maximum number of iterations (default = 5). |
Definition at line 73 of file lum.hpp.
setPointCloud()
template<typename PointT >
Change a point cloud on one of the SLAM graph's vertices.
This method will change the point cloud attached to an existing vertex and will not alter the SLAM graph structure. Note that the correspondences attached to this vertex will not change and may need to be updated manually.
- Note
- Vertex descriptors are typecastable to int.
- Parameters
-
[in] |
vertex |
The vertex descriptor of which to change the point cloud. |
[in] |
cloud |
The new point cloud for that vertex. |
Definition at line 118 of file lum.hpp.
setPose()
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.
The documentation for this class was generated from the following files: