Processing math: 100%

User Tools

Site Tools


ece4580:module_pcd:normalizepose

This is an old revision of the document!


Point Cloud Pose Normalization Using SVD

Sometimes a point cloud is living off in the wilderness, but we need it to be centered at the origina and possibly also oriented in some canonical manner. Turns out the the singular value decomposition can do that. Consider a matrix of points P, and its singular value decomposition, P=UΣV. The interesting fact is that U is a 3×3 orthogonal matrix. That means it is effectively a rotation matrix. But then what do the rest of the SVD matrices represent? Well, ΣV is the set of points prior to application of the rotation matrix, which would be the coordinate values of the points in a different reference frame.

However, the points can be anywhere in space. Normalization involves transforming them to be centered at the origin. That means, the point cloud needs to be offset by its mean value, so that the new mean value is the origin (or the zero vector). Supposing that ˉp is the mean of the set of points P, then each point pi needs to be shifted: pi=piˉp. After the shifting, all of the points are now “centered.” With this centered set ˉP, perform SVD ˉP=UΣV, then collect ˉp and U into a transformation matrix g, g=[Uˉp01]. Also perform the multiplication of the remaining SVD components, to get the pose normalized points Pn=ΣV.

ece4580/module_pcd/normalizepose.1486099925.txt.gz · Last modified: 2024/08/20 21:38 (external edit)