powered by
create a KD-tree from Barycenters for multiple closest point searches on a mesh
vcgCreateKDtreeFromBarycenters(mesh, nofPointsPerCell = 16, maxDepth = 64)
returns an object of class vcgKDtreeWithBarycenters containing external pointers to the tree, the barycenters and the target mesh
matrix or triangular mesh containing coordinates
number of points per kd-cell
maximum tree depth
vcgClostOnKDtreeFromBarycenters, vcgSearchKDtree, vcgCreateKDtree
if (FALSE) { data(humface);data(dummyhead) barytree <- vcgCreateKDtreeFromBarycenters(humface) closest <- vcgClostOnKDtreeFromBarycenters(barytree,dummyhead.mesh,k=50,threads=1) }
Run the code above in your browser using DataLab