Point Cloud Library (PCL)
1.14.1-dev
|
Helper class that creates a FLANN index from a given FLANN matrix. More...
#include <pcl/search/flann_search.h>
Public Member Functions | |
virtual IndexPtr | createIndex (MatrixConstPtr data)=0 |
Create a FLANN Index from the input data. More... | |
virtual | ~FlannIndexCreator ()=default |
destructor More... | |
Helper class that creates a FLANN index from a given FLANN matrix.
To use a FLANN index type with FlannSearch, implement this interface and pass an object of the new type to the FlannSearch constructor. See the implementation of KdTreeIndexCreator for an example.
Definition at line 128 of file flann_search.h.
|
virtualdefault |
destructor
|
pure virtual |
Create a FLANN Index from the input data.
[in] | data | The FLANN matrix containing the input. |
Implemented in pcl::search::FlannSearch< PointT, FlannDistance >::KdTreeIndexCreator, pcl::search::FlannSearch< PointT, FlannDistance >::KdTreeMultiIndexCreator, and pcl::search::FlannSearch< PointT, FlannDistance >::KMeansIndexCreator.