Iterative Closest Point&o=10616

Iterative Closest Point

Iterative Closest Point (ICP) is an algorithm employed to match two clouds of points. This matching is used to reconstruct 3D surfaces from different scans, to localize robots and achieve optimal path planning (especially when wheel odometry is unreliable due to slippery terrain), to match bone models with measures in real-time, etc.

The algorithm is very simple and is commonly used in real-time. It iteratively estimates the transformation (translation, rotation) between two raw scans.

Inputs: two raw scans, initial estimation of the transformation, criteria for stopping the iteration.

Output: refined transformation.

Essentially the algorithm steps are :

  1. Associate points by the nearest neighbor criteria.
  2. Estimate the parameters using a mean square cost function.
  3. Transform the points using the estimated parameters.
  4. Iterate (re-associate the points and so on).

See also

MeshLab an open source mesh processing tool that includes a GPL implementation of the ICP algorithm.

External links

Search another word or see Iterative Closest Point&o=10616on Dictionary | Thesaurus |Spanish
  • Please Login or Sign Up to use the Recent Searches feature