ClayFlannigan / icp

iterative closest point

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This icp could be used for 2D data?

rebeen opened this issue · comments

Dear Clay Flannigan,
could you please tell me whether this algorithm could be used to align two T-SNE data which are 2D or not ?

best regards
Rebeen

I'm not sure what T-SNE data is, but these methods can find a best-fit rigid body transformation (rotation and translation) between two data sets. The best_fit_transform function may be used if you have correspondence between the two data sets, meaning you have matches for each point in both sets. If you don't have correspondence, then the ICP algorithm may be used.

thank you