vcgSearchKDtree | R Documentation |
search an existing KD-tree
vcgSearchKDtree(kdtree, query, k, threads = 0)
kdtree |
object of class vcgKDtree |
query |
atrix or triangular mesh containing coordinates |
k |
number of k-closest neighbours to query |
threads |
integer: number of threads to use |
a list with
index |
integer matrices with indeces of closest points |
distances |
corresponding distances |
vcgCreateKDtree
## Not run:
data(humface);data(dummyhead)
mytree <- vcgCreateKDtree(humface)
## get indices and distances for 10 closest points.
closest <- vcgSearchKDtree(mytree,dummyhead.mesh,k=10,threads=1)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.