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

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

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

android - How to create dynamically Fragment pager adapter -