powered by
create a KD-tree from Barycenters for multiple closest point searches on a mesh
vcgCreateKDtreeFromBarycenters(mesh, nofPointsPerCell = 16, maxDepth = 64)
matrix or triangular mesh containing coordinates
number of points per kd-cell
maximum tree depth
returns an object of class vcgKDtreeWithBarycenters containing external pointers to the tree, the barycenters and the target mesh
vcgClostOnKDtreeFromBarycenters, vcgSearchKDtree, vcgCreateKDtree
# NOT RUN { 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