Iterative Closest Point algorithm for fine alignment of point clouds
Comparison of a few Iterative closest point algorithms and their implementation.
This file contains the implementaion of ICP algorithm which finds the fine alignment transformation matrix for two given input point cloud files along with a heuristic, which is a coarse transformation matrix.
Make sure to have:
CMake
(installation guide)
- Create a
build
directory and move into it
sh$ mkdir build
sh$ cd build
- Generate the Makefile with
CMake
sh$ build/cmake ..
- Generate the binary file
runfile
sh$ build/make
- Run the compiled file
sh$ build/./runfile
Video showing the visualisation of ICP algorithm in action
I'm adding some of the my personal notes and findings about this topic
- pcl has GeneralisedICP, NonLinearICP and ICP.
- ICP algorithm transformation is estimated based on Singular Value Decomposition (SVD)
- ICP_NL is an ICP variant that uses Levenberg-Marquardt optimization backend. The resultant transformation is optimized as a quaternion.
- Generalised_ICP is based on this paper In this paper authors have combined the the Iterative Closest Point (’ICP’) and ‘point-to-plane ICP‘ algorithms into a single probabilistic framework.
- ICP algorithm of PCL(Documentation)
- formating reference of this readme.md referred from yassram
MIT License
Copyright (c) 2020 yassir RAMDANI
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.