Contents
Kabsch algorithm
The Kabsch algorithm, also known as the Kabsch-Umeyama algorithm, named after Wolfgang Kabsch and Shinji Umeyama, is a method for calculating the optimal rotation matrix that minimizes the RMSD (root mean squared deviation) between two paired sets of points. It is useful for point-set registration in computer graphics, and in cheminformatics and bioinformatics to compare molecular and protein structures (in particular, see root-mean-square deviation (bioinformatics)). The algorithm only computes the rotation matrix, but it also requires the computation of a translation vector. When both the translation and rotation are actually performed, the algorithm is sometimes called partial Procrustes superimposition (see also orthogonal Procrustes problem).
Description
Let P and Q be two sets, each containing N points in. We want to find the transformation from Q to P. For simplicity, we will consider the three-dimensional case (n = 3). The sets P and Q can each be represented by N × 3 matrices with the first row containing the coordinates of the first point, the second row containing the coordinates of the second point, and so on, as shown in this matrix: The algorithm works in three steps: a translation, the computation of a covariance matrix, and the computation of the optimal rotation matrix.
Translation
Both sets of coordinates must be translated first, so that their centroid coincides with the origin of the coordinate system. This is done by subtracting the centroid coordinates from the point coordinates.
Computation of the covariance matrix
The second step consists of calculating a matrix H. In matrix notation, or, using summation notation, which is a cross-covariance matrix when P and Q are seen as data matrices.
Computation of the optimal rotation matrix
It is possible to calculate the optimal rotation R based on the matrix formula but implementing a numerical solution to this formula becomes complicated when all special cases are accounted for (for example, the case of H not having an inverse). If singular value decomposition (SVD) routines are available the optimal rotation, R, can be calculated using the following algorithm. First, calculate the SVD of the covariance matrix H, where U and V are orthogonal and \Sigma is diagonal. Next, record if the orthogonal matrices contain a reflection, Finally, calculate our optimal rotation matrix R as This R minimizes, where q_k and p_k are rows in Q and P respectively. Alternatively, optimal rotation matrix can also be directly evaluated as quaternion. This alternative description has been used in the development of a rigorous method for removing rigid-body motions from molecular dynamics trajectories of flexible molecules. In 2002 a generalization for the application to probability distributions (continuous or not) was also proposed.
Generalizations
The algorithm was described for points in a three-dimensional space. The generalization to D dimensions is immediate.
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.