基于PCL,分别实现了point2point,point2plane,plane2plane三种形式的icp算法。
mkdir build
cd build
cmake ..
make
./[target algorithm]
- CMakeLists.txt 目录CMake配置文件
- icp.cpp 主文件
在icp.cpp文件中分别有四个函数:
- PointToPlane 对应点到面形式ICP实现
- PointToPoint 对应点到点形式ICP实现
- icpPlaneToPlane 对应面到面形式ICP实现
- icpPointToPlane 对应另一种点到面ICP实现