#include <MatchersImpl.h>
Public Member Functions | |
virtual Matches | findClosests (const DataPoints &filteredReading) |
Find the closest neighbors of filteredReading in filteredReference passed to init() | |
virtual void | init (const DataPoints &filteredReference) |
Init this matcher to find nearest neighbor in filteredReference. | |
KDTreeMatcher (const Parameters ¶ms=Parameters()) | |
virtual | ~KDTreeMatcher () |
Static Public Member Functions | |
static const ParametersDoc | availableParameters () |
static const std::string | description () |
Public Attributes | |
const T | epsilon |
const int | knn |
const T | maxDist |
const NNSearchType | searchType |
Protected Attributes | |
boost::shared_ptr< NNS > | featureNNS |
Definition at line 68 of file MatchersImpl.h.
MatchersImpl< T >::KDTreeMatcher::KDTreeMatcher | ( | const Parameters & | params = Parameters() | ) |
Definition at line 61 of file MatchersImpl.cpp.
MatchersImpl< T >::KDTreeMatcher::~KDTreeMatcher | ( | ) | [virtual] |
Definition at line 72 of file MatchersImpl.cpp.
static const ParametersDoc MatchersImpl< T >::KDTreeMatcher::availableParameters | ( | ) | [inline, static] |
Definition at line 74 of file MatchersImpl.h.
static const std::string MatchersImpl< T >::KDTreeMatcher::description | ( | ) | [inline, static] |
Definition at line 70 of file MatchersImpl.h.
PointMatcher< T >::Matches MatchersImpl< T >::KDTreeMatcher::findClosests | ( | const DataPoints & | filteredReading | ) | [virtual] |
Find the closest neighbors of filteredReading in filteredReference passed to init()
Implements PointMatcher< T >::Matcher.
Definition at line 86 of file MatchersImpl.cpp.
void MatchersImpl< T >::KDTreeMatcher::init | ( | const DataPoints & | filteredReference | ) | [virtual] |
Init this matcher to find nearest neighbor in filteredReference.
Implements PointMatcher< T >::Matcher.
Definition at line 78 of file MatchersImpl.cpp.
const T MatchersImpl< T >::KDTreeMatcher::epsilon |
Definition at line 85 of file MatchersImpl.h.
boost::shared_ptr<NNS> MatchersImpl< T >::KDTreeMatcher::featureNNS [protected] |
Definition at line 90 of file MatchersImpl.h.
const int MatchersImpl< T >::KDTreeMatcher::knn |
Definition at line 84 of file MatchersImpl.h.
const T MatchersImpl< T >::KDTreeMatcher::maxDist |
Definition at line 87 of file MatchersImpl.h.
const NNSearchType MatchersImpl< T >::KDTreeMatcher::searchType |
Definition at line 86 of file MatchersImpl.h.