- Welcome
- Getting Started With the NVIDIA DriveWorks SDK
- Modules
- Samples
- Tools
- Tutorials
- SDK Porting Guide
- DriveWorks API
- More
Point cloud ICP module provides an API to align 3D points from a pair of lidar spins via Point-Plane Iterative Closest Points implementation. Its usage is shown in ICP (Iterative Closest Points) Sample. This module assumes that only a small translation and rotation exists between the two point clouds (relative to a prior pose provided); Example of a common type of input include lidar sweeps captured less than 2 meters apart from a moving vehicle.
The two point clouds input to the the ICP module are named Target
and Source
point clouds respectively. The output of the alignment is the transform that must be applied to Source points so that they align to the target point cloud. As this module uses an iterative approach, a Convergence
criteria is used to test if iterations need to stop. Cost
of the iteration is a measure of average distance between point and their target planes (please refer to literature on ICP process).
In the process of obtaining a temporally-fused point cloud comprising of the sweeps of lidar data captured from a moving lidar unit, one would require to compute the relative pose of the lidar unit between each sweep. This set of poses (described as transforms between successive sweeps of lidar), is such that a measure of mis-alignment is minimum between the two sweeps.
A perfectly well aligned pair of sweeps would be such that the distance between a point on a surface in source sweep lies perfectly flush on the same surface in the target sweep. In other words, sum of distances from a point (in source point cloud) to the plane of it nearest neighbor point (in target cloud) is at its minimum. Iterative Closest Point algorithm finds the transform that that sets this measure to its minimum.
The transform thus generated could be an indicator of the motion of the lidar unit, or could be used to align the point cloud to generated a map of the surrounding, among other uses.
The implemented system this document accompanies, repeatedly moves the source points towards the appropriate plane in the target plane over many iterations. The user can control how many such iterations can take plane and what tolerances of alignments are admissible.
This has been tested with lidar consisting of 64 beams, rotating at 10Hz mounted on vehicle that translates less than approx 2 meters between two spins (nominally, 2Km/h)
ICP Module places the following major restrictions on data input to the module:
Two criteria control the stopping point of the iteration in this module and consequently the total run time and the accuracy of the results. These criteria are defined in terms of:
When the difference between results of two iterative steps is smaller than the rotation/translation tolerances, the control returns to the application. The process terminates after a set number of iterations are complete, which is intended to produce a more uniform distribution of run times.
Alternatively, the application can provide a callback for the convergence test. This callback can compare two of the latest transforms and return a value that indicates whether the iterative process should conclude.
ICP Module provides some basic statistics about the last iteration performed. The statistics are a quantitative indicator of the alignment between the point clouds.
The module offers a variant of ICP to be used with structured point clouds only, i.e. there is a correlation of the points to their indices. To initialize the module,
In this particular example, we set params.icpType = DW_POINT_CLOUD_ICP_TYPE_DEPTH_MAP
.
DW_POINT_CLOUD_ICP_TYPE_DEPTH_MAP
as the icp type. See Point Cloud Memory Management and Point Cloud Accumulator for point cloud memory allocation and accumulation.API allows user to provide initial guess on the transformation between the source and target point clouds. If nullptr
is provided, ICP will use identity transformation as initial guess.
To release the module,
For more details see Point Cloud Processing Sample