procrustes for incomplete point sets
Ältere Kommentare anzeigen
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 Kommentar
Karel
am 4 Jan. 2021
Antworten (1)
Pratyush
am 12 Feb. 2024
0 Stimmen
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.
Kategorien
Mehr zu Particle Swarm finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!