#include "linear_index.h"
Public Types | |
typedef Distance::ResultType | DistanceType |
typedef Distance::ElementType | ElementType |
Public Member Functions | |
LinearIndex (const Matrix< ElementType > &inputData, const IndexParams ¶ms=LinearIndexParams(), Distance d=Distance()) | |
LinearIndex (const LinearIndex &) | |
void | buildIndex () |
Builds the index. More... | |
void | findNeighbors (ResultSet< DistanceType > &resultSet, const ElementType *vec, const SearchParams &) |
Method that searches for nearest-neighbours. More... | |
IndexParams | getParameters () const |
flann_algorithm_t | getType () const |
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 *) |
Loads the index from a stream. More... | |
LinearIndex & | operator= (const LinearIndex &) |
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 *) |
Saves the index to a stream. More... | |
size_t | size () const |
int | usedMemory () const |
size_t | veclen () const |
typedef Distance::ResultType cvflann::LinearIndex< Distance >::DistanceType |
typedef Distance::ElementType cvflann::LinearIndex< Distance >::ElementType |
|
inline |
cvflann::LinearIndex< Distance >::LinearIndex | ( | const LinearIndex< Distance > & | ) |
|
inlinevirtual |
Builds the index.
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Method that searches for nearest-neighbours.
Implements cvflann::NNIndex< Distance >.
References cvflann::ResultSet< DistanceType >::addPoint().
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
References cvflann::FLANN_INDEX_LINEAR.
|
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 >.
LinearIndex& cvflann::LinearIndex< Distance >::operator= | ( | const LinearIndex< 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 >.
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.
|
inlinevirtual |
Implements cvflann::NNIndex< Distance >.