You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"compute the radius search of a point cloud using nanoflann"
20
-
"-query : a pytorch tensor of size N1 x d,. used to query the nearest neighbors"
21
-
"- support : a pytorch tensor of size N2 x d. used to build the tree"
22
-
"- radius : float number, size of the ball for the radius search."
23
-
"- max_num : int number, indicate the maximum of neaghbors allowed(if -1 then all the possible neighbors will be computed). "
24
-
" - mode : int number that indicate which format for the neighborhood"
25
-
" mode=0 mean a matrix of neighbors(-1 for shadow neighbors)"
26
-
"mode=1 means a matrix of edges of size Num_edge x 2"
27
-
"return a tensor of size N1 x M where M is either max_num or the maximum number of neighbors found if mode = 0, if mode=1 return a tensor of size Num_edge x 2.",
"compute the radius search of a point cloud for each batch using nanoflann"
32
-
"-query : a pytorch tensor (float) of size N1 x d,. used to query the nearest neighbors"
33
-
"- support : a pytorch tensor(float) of size N2 x d. used to build the tree"
34
-
"- query_batch : a pytorch tensor(long) contains indices of the batch of the query size N1"
35
-
"NB : the batch must be sorted"
36
-
"- support_batch: a pytorch tensor(long) contains indices of the batch of the support size N2"
37
-
"NB: the batch must be sorted"
38
-
"-radius: float number, size of the ball for the radius search."
39
-
"- max_num : int number, indicate the maximum of neaghbors allowed(if -1 then all the possible neighbors wrt the radius will be computed)."
40
-
"- mode : int number that indicate which format for the neighborhood"
41
-
"mode=0 mean a matrix of neighbors(N2 for shadow neighbors)"
42
-
"mode=1 means a matrix of edges of size Num_edge x 2"
43
-
"return a tensor of size N1 x M where M is either max_num or the maximum number of neighbors found if mode = 0, if mode=1 return a tensor of size Num_edge x 2.",
0 commit comments