Skip to content
forked from seven-linglx/icp

基于PCL,分别实现了point2point,point2plane,plane2plane三种形式的icp算法。There is practice of ICP algorithm using point-to-point, point-to-plane or plane-to-plane method

License

Notifications You must be signed in to change notification settings

forrestsocool/icp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ICP

简介(Introduction)

基于PCL,分别实现了point2point,point2plane,plane2plane三种形式的icp算法。

编译与运行(Compile&Run)

mkdir build
cd build
cmake ..
make
./[target algorithm]

目录(Content)

  • CMakeLists.txt 目录CMake配置文件
  • icp.cpp 主文件

详解(Details)

在icp.cpp文件中分别有四个函数:

  • PointToPlane 对应点到面形式ICP实现
  • PointToPoint 对应点到点形式ICP实现
  • icpPlaneToPlane 对应面到面形式ICP实现
  • icpPointToPlane 对应另一种点到面ICP实现

About

基于PCL,分别实现了point2point,point2plane,plane2plane三种形式的icp算法。There is practice of ICP algorithm using point-to-point, point-to-plane or plane-to-plane method

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 99.9%
  • CMake 0.1%