Registration of 3D Point Cloud Data
This is a project that I did with my graduate student Chris Baker. The problem we addressed was how to register a 3D point cloud to a prior geometric model, when the data is quasi‐degenerate; meaning that some of the degrees of freedom of the pose are under constrained. This situation often arises in real world robotics applications, where the robot has to accurately place its end effector with respect to an object.
Although this project was theoretical in nature, it has a practical application. Consider the application of using a robot to strip paint from the surface of an airplane. To achieve precise positioning, the robot uses a laser scanner to get a point cloud of the surface. It then has to register (or align) this point cloud data to the a priori known model of the airplane, in order to determine its position. This is usually done using an “iterative closest point” algorithm, embedded within a RANSAC (Random Sample Consensus) framework.
A problem occurs when the model geometry is insufficient to constrain all the degrees of freedom of the pose. For example, a planar surface is fully degenerate, because you can’t recover the sensor’s position parallel to the plane, or its orientation about the plane normal. If there are some small structures present, they can disambiguate the pose. However, points on small structures will likely be missed in a random sample.
A planar surface is degenerate, in that the pose of the sensor is not fully constrained.
Small structures disambiguate the pose, but may be missed in a random sample. We call this “quasi-degenerate”.
We developed a method to select points in such a way to avoid degenerate sample sets. Instead of a purely random point selection, we direct the selection of points to avoid information redundancy. The algorithm is called DIRSAC, because it DIRects point selection within a SAmple and Consensus framework. The main idea is that we evaluate each point based on its ability to constrain the pose of the solution. We identify redundant points by computing the mutual information between points. Experimental results show significant improvements over the naive RANSAC algorithm.
Probability of algorithm to compute a solution that reduces the error by 80% and 95%. The values are given as percentages.
We compared our algorithm to the naive RANSAC algorithm, on both synthetic and real data. Our algorithm is much more likely to find a correct solution, especially for quasi-degenerate data.
For complete details, see our journal paper: C. Baker, W. Hoff. "DIRSAC: A directed sample and consensus algorithm for localization with quasi-degenerate data." Robotics and Autonomous Systems, vol. 97, pp. 92-107, 2017 (pdf).