Нужные и эффективные математические алгоритмы » Обсуждения


Bookmark and Share




ICP алгоритмы притяжения поверхностей,Iterative Closest Point (ICP)

сен 16, 2010 | 12:09
Iterative Closest Point (ICP) is an algorithm employed to minimize the difference between two clouds of points. ICP is often used to reconstruct 2D or 3D surfaces from different scans, to localize robots and achieve optimal path planning (especially when wheel odometry is unreliable due to slippery terrain), to co-register bone models, etc.
The algorithm is conceptually simple and is commonly used in real-time. It iteratively revises the transformation (translation, rotation) needed to minimize the distance between the points of two raw scans.
Inputs: points from two raw scans, initial estimation of the transformation, criteria for stopping the iteration.
Output: refined transformation.
Essentially the algorithm steps are :
    Associate points by the nearest neighbor criteria.
    Estimate transformation parameters using a mean square cost function.
    Transform the points using the estimated parameters.
    Iterate (re-associate the points and so on).

Комментарии  

Вам необходимо зайти или зарегистрироваться для комментирования
Александр, почему вы решили в первую очередь написать про этот алгоритм? Почему на английском? Почему бы не перевести это на русский? Вообще похоже на копипаст откуда-то…

Если вы хотите что-то обсудить, описывайте проблему и предлагайте её обсудить. Для описательной и справочной информации есть википедия.
2010-09-17 05:55:46 · Ответить · · Ссылка
От туда и копипаст :)
2010-09-19 00:23:56 · Ответить · · Ссылка