Hierarchical index. More...
#include <opencv2/flann/hierarchical_clustering_index.h>
Public Types | |
typedef Distance::ResultType | DistanceType |
typedef Distance::ElementType | ElementType |
Public Member Functions | |
HierarchicalClusteringIndex (const Matrix< ElementType > &inputData, const IndexParams &index_params=HierarchicalClusteringIndexParams(), Distance d=Distance()) | |
Index constructor. More... | |
HierarchicalClusteringIndex (const HierarchicalClusteringIndex &) | |
virtual | ~HierarchicalClusteringIndex () |
Index destructor. More... | |
void | buildIndex () CV_OVERRIDE |
Builds the index. More... | |
void | findNeighbors (ResultSet< DistanceType > &result, const ElementType *vec, const SearchParams &searchParams) CV_OVERRIDE |
Find set of nearest neighbors to vec. More... | |
void | free_elements () |
Release the inner elements of indices[]. More... | |
IndexParams | getParameters () const CV_OVERRIDE |
flann_algorithm_t | getType () const CV_OVERRIDE |
virtual void | knnSearch (const Matrix< ElementType > &queries, Matrix< int > &indices, Matrix< DistanceType > &dists, int knn, const SearchParams ¶ms) |
Perform k-nearest neighbor search. More... | |
void | loadIndex (FILE *stream) CV_OVERRIDE |
Loads the index from a stream. More... | |
HierarchicalClusteringIndex & | operator= (const HierarchicalClusteringIndex &) |
virtual int | radiusSearch (const Matrix< ElementType > &query, Matrix< int > &indices, Matrix< DistanceType > &dists, float radius, const SearchParams ¶ms) |
Perform radius search. More... | |
void | saveIndex (FILE *stream) CV_OVERRIDE |
Saves the index to a stream. More... | |
size_t | size () const CV_OVERRIDE |
Returns size of index. More... | |
int | usedMemory () const CV_OVERRIDE |
Computes the inde memory usage Returns: memory used by the index. More... | |
size_t | veclen () const CV_OVERRIDE |
Returns the length of an index feature. More... | |
Hierarchical index.
Contains a tree constructed through a hierarchical clustering and other information for indexing a set of points for nearest-neighbour matching.
typedef Distance::ResultType cvflann::HierarchicalClusteringIndex< Distance >::DistanceType |
typedef Distance::ElementType cvflann::HierarchicalClusteringIndex< Distance >::ElementType |
|
inline |
Index constructor.
Params: inputData = dataset with the input features params = parameters passed to the hierarchical k-means algorithm
References cvflann::FLANN_CENTERS_GONZALES, cvflann::FLANN_CENTERS_GROUPWISE, cvflann::FLANN_CENTERS_KMEANSPP, cvflann::FLANN_CENTERS_RANDOM, and cvflann::get_param().
cvflann::HierarchicalClusteringIndex< Distance >::HierarchicalClusteringIndex | ( | const HierarchicalClusteringIndex< Distance > & | ) |
|
inlinevirtual |
Index destructor.
Release the memory used by the index.
|
inlinevirtual |
Builds the index.
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Find set of nearest neighbors to vec.
Their indices are stored inside the result object.
Params: result = the result object in which the indices of the nearest-neighbors are stored vec = the vector for which to search the nearest neighbors searchParams = parameters that influence the search algorithm (checks)
Implements cvflann::NNIndex< Distance >.
References cvflann::get_param(), cvflann::BranchStruct< T, DistanceType >::node, and cvflann::Heap< T >::popMin().
|
inline |
Release the inner elements of indices[].
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
References cvflann::ResultSet< DistanceType >::addPoint(), cvflann::ResultSet< DistanceType >::full(), cvflann::Heap< T >::insert(), cvflann::load_value(), cvflann::save_value(), cv::sort(), and cv::swap().
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
References cvflann::FLANN_INDEX_HIERARCHICAL.
|
inlinevirtualinherited |
Perform k-nearest neighbor search.
[in] | queries | The query points for which to find the nearest neighbors |
[out] | indices | The indices of the nearest neighbors found |
[out] | dists | Distances to the nearest neighbors found |
[in] | knn | Number of nearest neighbors to return |
[in] | params | Search parameters |
Reimplemented in cvflann::Index< Distance >, cvflann::Index< cv::L2< ElementType > >, cvflann::Index< cv::L1< ElementType > >, cvflann::KDTreeSingleIndex< Distance >, and cvflann::LshIndex< Distance >.
|
inlinevirtual |
Loads the index from a stream.
stream | The stream from which the index is loaded |
Implements cvflann::NNIndex< Distance >.
References cvflann::load_value().
HierarchicalClusteringIndex& cvflann::HierarchicalClusteringIndex< Distance >::operator= | ( | const HierarchicalClusteringIndex< Distance > & | ) |
|
inlinevirtualinherited |
Perform radius search.
[in] | query | The query point |
[out] | indices | The indinces of the neighbors found within the given radius |
[out] | dists | The distances to the nearest neighbors found |
[in] | radius | The radius used for search |
[in] | params | Search parameters |
Reimplemented in cvflann::Index< Distance >, cvflann::Index< cv::L2< ElementType > >, and cvflann::Index< cv::L1< ElementType > >.
|
inlinevirtual |
Saves the index to a stream.
stream | The stream to save the index to |
Implements cvflann::NNIndex< Distance >.
References cvflann::save_value().
|
inlinevirtual |
Returns size of index.
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Computes the inde memory usage Returns: memory used by the index.
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Returns the length of an index feature.
Implements cvflann::NNIndex< Distance >.