Open3D (C++ API)
0.18.0+252c867
|
KDTree search parameters for hybrid KNN and radius search. More...
#include <KDTreeSearchParam.h>
Public Member Functions | |
KDTreeSearchParamHybrid (double radius, int max_nn) | |
Default Constructor. More... | |
Public Member Functions inherited from open3d::geometry::KDTreeSearchParam | |
virtual | ~KDTreeSearchParam () |
SearchType | GetSearchType () const |
Get the search type (KNN, Radius, Hybrid) for the search parameter. More... | |
Data Fields | |
double | radius_ |
Search radius. More... | |
int | max_nn_ |
At maximum, max_nn neighbors will be searched. More... | |
Additional Inherited Members | |
Public Types inherited from open3d::geometry::KDTreeSearchParam | |
enum class | SearchType { Knn = 0 , Radius = 1 , Hybrid = 2 } |
Specifies the search type for the search. More... | |
Protected Member Functions inherited from open3d::geometry::KDTreeSearchParam | |
KDTreeSearchParam (SearchType type) | |
KDTree search parameters for hybrid KNN and radius search.
|
inline |
Default Constructor.
radius | Specifies the radius of the search. |
max_nn | Specifies the max neighbors to be searched. |
int open3d::geometry::KDTreeSearchParamHybrid::max_nn_ |
At maximum, max_nn neighbors will be searched.
double open3d::geometry::KDTreeSearchParamHybrid::radius_ |
Search radius.