iterative closest points
CEV ICP algorithm library
Loading...
Searching...
No Matches
Vanilla ICP
Usage
You can construct a new instance of Vanilla ICP with icp::ICP::from_method("vanilla").
Description
The vanilla algorithm for ICP will match the point-cloud centers exactly and then iterate until an optimal rotation has been found.
  1. Matching Step: match closest points.

    Sources:

  2. Transformation Step: determine optimal transformation.

    The translation vector is determined by the displacement between the centroids of both point clouds. The rotation matrix is calculated via singular value decomposition.

    Sources:

Read ICP Sources for a list of all resources used in this project. This page was automatically generated from vanilla.cpp with icp_doc_builder.py.