ece4580:module_pcd:normalizepose
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ece4580:module_pcd:normalizepose [2017/02/03 00:31] – pvela | ece4580:module_pcd:normalizepose [2024/08/20 21:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Point Cloud Pose Normalization Using SVD ====== | ====== 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. | + | 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. |
- | $$ P = U \Sigma V $$. | + | $$ P = U \Sigma V.$$ |
- | The interesting fact is that $U$ is a 3x3 orthogonal matrix. | + | The interesting fact is that $U$ is a 3x3 orthogonal matrix. |
- | However, the points can be anywhere in space. Normalization involves transforming them to be centered at the origin. | + | However, the points can be anywhere in space. Normalization involves transforming them to be centered at the origin |
$$ p_i' = p_i - \bar p.$$ | $$ p_i' = p_i - \bar p.$$ | ||
- | After the shifting, all of the points are now " | + | After the shifting, all of the points are now " |
- | $$ P' | + | $$ \bar P = U \Sigma V,$$ |
then collect $\bar p$ and $U$ into a transformation matrix $g$, | then collect $\bar p$ and $U$ into a transformation matrix $g$, | ||
$$ g = \left[ \begin{matrix} U & \bar p \\ 0 & 1 \end{matrix} \right].$$ | $$ g = \left[ \begin{matrix} U & \bar p \\ 0 & 1 \end{matrix} \right].$$ | ||
Also perform the multiplication of the remaining SVD components, to get the pose normalized points | Also perform the multiplication of the remaining SVD components, to get the pose normalized points | ||
$$ P_n = \Sigma V.$$ | $$ P_n = \Sigma V.$$ | ||
+ | |||
+ | Voila, you are done. You have both the pose normalized points $P_n$ and the transformation $g$ that maps these points back to their original location in the world. In brief, $P = g \cdot P_n$ (where the product is of points represented in homogeneous form). | ||
+ | |||
+ | ------------- | ||
+ | ;#; | ||
+ | [[ECE4580: | ||
+ | ;#; |
ece4580/module_pcd/normalizepose.1486099861.txt.gz · Last modified: 2024/08/20 21:38 (external edit)