Classes | Public Types | Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType > Struct Template Reference

#include <nabo_experimental.h>

Inheritance diagram for Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >:
Inheritance graph
[legend]

Classes

struct  BuildPoint
 
struct  CompareDim
 
struct  Node
 

Public Types

typedef NearestNeighbourSearch< T, CloudType >::Index Index
 
typedef NearestNeighbourSearch< T, CloudType >::IndexVector IndexVector
 
typedef NearestNeighbourSearch< T, CloudType >::Matrix Matrix
 
typedef NearestNeighbourSearch< T, CloudType >::Vector Vector
 
- Public Types inherited from Nabo::NearestNeighbourSearch< T, CloudType >
typedef CloudType CloudType
 a column-major Eigen matrix in which each column is a point; this matrix has dim rows More...
 
enum  CreationOptionFlags
 creation option More...
 
typedef int Index
 an index to a Vector or a Matrix, for refering to data points More...
 
typedef Eigen::Matrix< Index, Eigen::Dynamic, Eigen::Dynamic > IndexMatrix
 a matrix of indices to data points More...
 
typedef Eigen::Matrix< Index, Eigen::Dynamic, 1 > IndexVector
 a vector of indices to data points More...
 
typedef Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > Matrix
 a column-major Eigen matrix in which each column is a point; this matrix has dim rows More...
 
enum  SearchOptionFlags
 search option More...
 
enum  SearchType
 type of search More...
 
typedef Eigen::Matrix< T, Eigen::Dynamic, 1 > Vector
 an Eigen vector of type T, to hold the coordinates of a point More...
 

Public Member Functions

 KDTreeUnbalancedPtInLeavesExplicitBoundsStack (const CloudType &cloud)
 
virtual IndexVector knn (const Vector &query, const Index k, const T epsilon, const unsigned optionFlags)
 
- Public Member Functions inherited from Nabo::NearestNeighbourSearch< T, CloudType >
unsigned long knn (const Vector &query, IndexVector &indices, Vector &dists2, const Index k=1, const T epsilon=0, const unsigned optionFlags=0, const T maxRadius=std::numeric_limits< T >::infinity()) const
 Find the k nearest neighbours of query. More...
 
virtual unsigned long knn (const Matrix &query, IndexMatrix &indices, Matrix &dists2, const Index k=1, const T epsilon=0, const unsigned optionFlags=0, const T maxRadius=std::numeric_limits< T >::infinity()) const=0
 Find the k nearest neighbours for each point of query. More...
 
virtual unsigned long knn (const Matrix &query, IndexMatrix &indices, Matrix &dists2, const Vector &maxRadii, const Index k=1, const T epsilon=0, const unsigned optionFlags=0) const=0
 Find the k nearest neighbours for each point of query. More...
 
virtual ~NearestNeighbourSearch ()
 virtual destructor More...
 

Protected Types

typedef std::vector< BuildPointBuildPoints
 
typedef BuildPoints::const_iterator BuildPointsCstIt
 
typedef BuildPoints::iterator BuildPointsIt
 
typedef IndexHeapSTL< Index, T > Heap
 
typedef std::vector< NodeNodes
 

Protected Member Functions

unsigned buildNodes (const BuildPointsIt first, const BuildPointsIt last, const Vector minValues, const Vector maxValues)
 
void recurseKnn (const Vector &query, const size_t n, T rd, Heap &heap, const T maxError, const bool allowSelfMatch)
 
- Protected Member Functions inherited from Nabo::NearestNeighbourSearch< T, CloudType >
void checkSizesKnn (const Matrix &query, const IndexMatrix &indices, const Matrix &dists2, const Index k, const unsigned optionFlags, const Vector *maxRadii=0) const
 Make sure that the output matrices have the right sizes. Throw an exception otherwise. More...
 
 NearestNeighbourSearch (const CloudType &cloud, const Index dim, const unsigned creationOptionFlags)
 constructor More...
 

Protected Attributes

Nodes nodes
 

Additional Inherited Members

- Static Public Member Functions inherited from Nabo::NearestNeighbourSearch< T, CloudType >
static NearestNeighbourSearchcreate (const CloudType &cloud, const Index dim=std::numeric_limits< Index >::max(), const SearchType preferedType=KDTREE_LINEAR_HEAP, const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Create a nearest-neighbour search. More...
 
static NearestNeighbourSearchcreate (const WrongMatrixType &cloud, const Index dim=std::numeric_limits< Index >::max(), const SearchType preferedType=KDTREE_LINEAR_HEAP, const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Prevent creation of trees with the wrong matrix type. Currently only dynamic size matrices are supported. More...
 
static NearestNeighbourSearchcreateBruteForce (const CloudType &cloud, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0)
 Create a nearest-neighbour search, using brute-force search, useful for comparison only. More...
 
static NearestNeighbourSearchcreateBruteForce (const WrongMatrixType &cloud, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0)
 Prevent creation of trees with the wrong matrix type. Currently only dynamic size matrices are supported. More...
 
static NearestNeighbourSearchcreateKDTreeLinearHeap (const CloudType &cloud, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Create a nearest-neighbour search, using a kd-tree with linear heap, good for small k (~up to 30) More...
 
static NearestNeighbourSearchcreateKDTreeLinearHeap (const WrongMatrixType &cloud, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Prevent creation of trees with the wrong matrix type. Currently only dynamic size matrices are supported. More...
 
static NearestNeighbourSearchcreateKDTreeTreeHeap (const CloudType &cloud, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Create a nearest-neighbour search, using a kd-tree with tree heap, good for large k (~from 30) More...
 
static NearestNeighbourSearchcreateKDTreeTreeHeap (const WrongMatrixType &, const Index dim=std::numeric_limits< Index >::max(), const unsigned creationOptionFlags=0, const Parameters &additionalParameters=Parameters())
 Prevent creation of trees with the wrong matrix type. Currently only dynamic size matrices are supported. More...
 
- Public Attributes inherited from Nabo::NearestNeighbourSearch< T, CloudType >
const CloudTypecloud
 the reference to the data-point cloud, which must remain valid during the lifetime of the NearestNeighbourSearch object More...
 
const unsigned creationOptionFlags
 creation options More...
 
const Index dim
 the dimensionality of the data-point cloud More...
 
const Vector maxBound
 the high bound of the search space (axis-aligned bounding box) More...
 
const Vector minBound
 the low bound of the search space (axis-aligned bounding box) More...
 
- Static Public Attributes inherited from Nabo::NearestNeighbourSearch< T, CloudType >
static constexpr Index InvalidIndex
 the invalid index More...
 
static constexpr T InvalidValue
 the invalid value More...
 

Detailed Description

template<typename T, typename CloudType>
struct Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >

Definition at line 274 of file nabo_experimental.h.

Member Typedef Documentation

◆ BuildPoints

template<typename T, typename CloudType>
typedef std::vector<BuildPoint> Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::BuildPoints
protected

Definition at line 294 of file nabo_experimental.h.

◆ BuildPointsCstIt

template<typename T, typename CloudType>
typedef BuildPoints::const_iterator Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::BuildPointsCstIt
protected

Definition at line 296 of file nabo_experimental.h.

◆ BuildPointsIt

template<typename T, typename CloudType>
typedef BuildPoints::iterator Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::BuildPointsIt
protected

Definition at line 295 of file nabo_experimental.h.

◆ Heap

template<typename T, typename CloudType>
typedef IndexHeapSTL<Index, T> Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::Heap
protected

Definition at line 305 of file nabo_experimental.h.

◆ Index

template<typename T, typename CloudType>
typedef NearestNeighbourSearch<T, CloudType>::Index Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::Index

Definition at line 278 of file nabo_experimental.h.

◆ IndexVector

Definition at line 279 of file nabo_experimental.h.

◆ Matrix

Definition at line 277 of file nabo_experimental.h.

◆ Nodes

template<typename T, typename CloudType>
typedef std::vector<Node> Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::Nodes
protected

Definition at line 317 of file nabo_experimental.h.

◆ Vector

Definition at line 276 of file nabo_experimental.h.

Constructor & Destructor Documentation

◆ KDTreeUnbalancedPtInLeavesExplicitBoundsStack()

Definition at line 824 of file experimental/kdtree_cpu.cpp.

Member Function Documentation

◆ buildNodes()

template<typename T , typename CloudType >
unsigned Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::buildNodes ( const BuildPointsIt  first,
const BuildPointsIt  last,
const Vector  minValues,
const Vector  maxValues 
)
protected

Definition at line 761 of file experimental/kdtree_cpu.cpp.

◆ knn()

template<typename T, typename CloudType >
KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::IndexVector Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::knn ( const Vector query,
const Index  k,
const T  epsilon,
const unsigned  optionFlags 
)
virtual

Definition at line 846 of file experimental/kdtree_cpu.cpp.

◆ recurseKnn()

template<typename T, typename CloudType >
void Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::recurseKnn ( const Vector query,
const size_t  n,
rd,
Heap heap,
const T  maxError,
const bool  allowSelfMatch 
)
protected

Definition at line 866 of file experimental/kdtree_cpu.cpp.

Member Data Documentation

◆ nodes

template<typename T, typename CloudType>
Nodes Nabo::KDTreeUnbalancedPtInLeavesExplicitBoundsStack< T, CloudType >::nodes
protected

Definition at line 319 of file nabo_experimental.h.


The documentation for this struct was generated from the following files:


libnabo
Author(s): Stéphane Magnenat
autogenerated on Mon Feb 28 2022 22:41:38