The Kabsch algorithm, also known as the Kabsch-Umeyama algorithm,[1] 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).
Let and be two sets, each containing points in
Rn
n=3
The algorithm works in three steps: a translation, the computation of a covariance matrix, and the computation of the optimal rotation matrix.
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.
The second step consists of calculating a matrix . In matrix notation,
H=PTQ
or, using summation notation,
Hij=
N | |
\sum | |
k=1 |
PkiQkj,
which is a cross-covariance matrix when and are seen as data matrices.
It is possible to calculate the optimal rotation based on the matrix formula
R=\left(HT
| ||||
H\right) |
-1,
but implementing a numerical solution to this formula becomes complicated when all special cases are accounted for (for example, the case of not having an inverse).
If singular value decomposition (SVD) routines are available the optimal rotation,, can be calculated using the following algorithm.
First, calculate the SVD of the covariance matrix,
H=U\SigmaVT
where and are orthogonal and
\Sigma
d=\det\left(UVT\right)=\det(U)\det(V).
Finally, calculate our optimal rotation matrix as
R=U\begin{pmatrix} 1&0&0\\ 0&1&0\\ 0&0&d\end{pmatrix}VT.
This minimizes
N|R | |
\sum | |
k=1 |
qk-pk|
qk
pk
Alternatively, optimal rotation matrix can also be directly evaluated as quaternion.[2] [3] [4] [5] 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.[6] In 2002 a generalization for the application to probability distributions (continuous or not) was also proposed.[7]
The algorithm was described for points in a three-dimensional space. The generalization to dimensions is immediate.
This SVD algorithm is described in more detail at https://web.archive.org/web/20140225050055/http://cnx.org/content/m11608/latest/
A Matlab function is available at http://www.mathworks.com/matlabcentral/fileexchange/25746-kabsch-algorithm
A C++ implementation (and unit test) using Eigen
A Python script is available at https://github.com/charnley/rmsd. Another implementation can be found inSciPy.
A free PyMol plugin easily implementing Kabsch is https://www.pymolwiki.org/index.php/Kabsch. (This previously linked to CEalign https://wiki.pymol.org/index.php/Cealign, but this uses the Combinatorial Extension (CE) algorithm.) VMD uses the Kabsch algorithm for its alignment.
The FoldX modeling toolsuite incorporates the Kabsch algorithm to measure RMSD between Wild Type and Mutated protein structures.