How can I find similar correspond points in ICP transformation in Matlab? -


i have 2 set of point clouds , read them code in matlab:

ptcloud1 = pcread('sub2a.ply'); ptcloud2 = pcread('sub2b.ply'); 

then register second 1 first 1 icp (iterative closest point) algorithm this:

[tform,movingreg,rmse] = pcregrigid(ptcloud2,ptcloud1) 

the answer in 'movingreg'. question how can know point in point cloud of 'movingreg' corresponding similar point of point cloud of 'ptcloud1'?


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -