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
Copy file name to clipboardExpand all lines: cpu/src/bindings.cpp
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,4 +35,15 @@ PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
35
35
"mode=1 means a matrix of edges of size Num_edge x 2"
36
36
"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 and return a tensor containing the squared distance of the neighbors",
"compute the radius search of a batch of point cloud using nanoflann"
40
+
"-query : a pytorch tensor of size B x N1 x 3,. used to query the nearest neighbors"
41
+
"- support : a pytorch tensor of size B x N2 x 3. used to build the tree"
42
+
"- radius : float number, size of the ball for the radius search."
43
+
"- max_num : int number, indicate the maximum of neaghbors allowed(if -1 then all the possible neighbors will be computed). "
44
+
" - mode : int number that indicate which format for the neighborhood"
45
+
" mode=0 mean a matrix of neighbors(-1 for shadow neighbors)"
46
+
"mode=1 means a matrix of edges of size Num_edge x 2"
47
+
"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 and return a tensor containing the squared distance of the neighbors",
0 commit comments