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

1111. appearing after print sequence - php -

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

node.js - Express and Redis - If session exists for this user, don't allow access -