procrustes for incomplete point sets

조회 수: 6 (최근 30일)
Karel
Karel 2021년 1월 4일
답변: Pratyush 2024년 2월 12일
I need to find a linear transformation (exaclty as funcion procrustes does) for overlapping, but incomplete point sets.
That means, not all points of X are present in Y, and vice versa, not all points of Y are present in X.
What is the best way to do that?
  댓글 수: 1
Karel
Karel 2021년 1월 4일
Perhaps some kind of RANSAC could be applied? A randomly selected subsamples of identical size from both sets should be selected and the tranformation calculcated for them? How large the subsamples should be? Any experience?

댓글을 달려면 로그인하십시오.

답변 (1개)

Pratyush
Pratyush 2024년 2월 12일
Hi Karel
To align incomplete point sets in MATLAB when using the "procrustes" function yo can do the following:
  • Determine which points in set X correspond to points in set Y based on some criteria or identifiers.
  • Form two new subsets containing only the corresponding points from the original sets X and Y.
  • Use the "procrustes" function on these subsets to calculate the optimal linear transformation.
  • Apply the obtained transformation to the full set X to align it with set Y.
Note that establishing correspondences between points is a crucial step and may require manual intervention or advanced feature matching techniques depending on the data.

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by