cheshirekow
v0.1.0
|
#include <mpblocks/kd_tree/r2_s1/KNearest.h>
Public Types | |
typedef Allocator< Key_t > | Allocator_t |
typedef Distance< Traits > | Distance_t |
typedef Traits::Format_t | Format_t |
typedef Traits::HyperRect | HyperRect_t |
typedef Key< Traits > | Key_t |
typedef Key_t::Compare | KeyCompare_t |
typedef Traits::Node | Node_t |
typedef Eigen::Matrix < Format_t, Traits::NDim, 1 > | Point_t |
typedef std::set< Key_t, KeyCompare_t, Allocator_t > | PQueue_t |
Public Types inherited from mpblocks::kd_tree::NearestSearchIface< Traits > | |
typedef Traits::Format_t | Format_t |
typedef Traits::HyperRect | HyperRect_t |
typedef Traits::Node | Node_t |
typedef Vector_t | Point_t |
typedef Eigen::Matrix < Format_t, Traits::NDim, 1 > | Vector_t |
Public Member Functions | |
Distance_t & | distFn () |
virtual void | evaluate (const Point_t &q, const Point_t &p, Node_t *n) |
calculates Euclidean distance from q to p , and if its less than the current best replaces the current best node with n More... | |
KNearest (unsigned int k=1) | |
void | reset () |
void | reset (int k) |
const PQueue_t & | result () |
virtual bool | shouldRecurse (const Point_t &q, const HyperRect_t &r) |
evaluate the Euclidean distance from q to it's closest point in r and if that distance is less than the current best distance, return true More... | |
virtual | ~KNearest () |
Public Member Functions inherited from mpblocks::kd_tree::NearestSearchIface< Traits > | |
virtual | ~NearestSearchIface () |
just ensure virtualness More... | |
Protected Attributes | |
Distance_t | m_dist2Fn |
unsigned int | m_k |
PQueue_t | m_queue |
Definition at line 39 of file KNearest.h.
typedef Allocator<Key_t> mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Allocator_t |
Definition at line 50 of file KNearest.h.
typedef Distance<Traits> mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Distance_t |
Definition at line 47 of file KNearest.h.
typedef Traits::Format_t mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Format_t |
Definition at line 43 of file KNearest.h.
typedef Traits::HyperRect mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::HyperRect_t |
Definition at line 45 of file KNearest.h.
typedef Key<Traits> mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Key_t |
Definition at line 48 of file KNearest.h.
typedef Key_t::Compare mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::KeyCompare_t |
Definition at line 49 of file KNearest.h.
typedef Traits::Node mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Node_t |
Definition at line 44 of file KNearest.h.
typedef Eigen::Matrix<Format_t,Traits::NDim,1> mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::Point_t |
Definition at line 52 of file KNearest.h.
typedef std::set<Key_t,KeyCompare_t,Allocator_t> mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::PQueue_t |
Definition at line 53 of file KNearest.h.
mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::KNearest | ( | unsigned int | k = 1 | ) |
Definition at line 37 of file KNearest.hpp.
|
inlinevirtual |
Definition at line 63 of file KNearest.h.
|
inline |
Definition at line 66 of file KNearest.h.
|
virtual |
calculates Euclidean distance from q
to p
, and if its less than the current best replaces the current best node with n
Implements mpblocks::kd_tree::NearestSearchIface< Traits >.
Definition at line 70 of file KNearest.hpp.
void mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::reset | ( | ) |
Definition at line 44 of file KNearest.hpp.
void mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::reset | ( | int | k | ) |
Definition at line 51 of file KNearest.hpp.
const KNearest< Traits, Allocator >::PQueue_t & mpblocks::kd_tree::r2_s1::KNearest< Traits, Allocator >::result | ( | ) |
Definition at line 61 of file KNearest.hpp.
|
virtual |
evaluate the Euclidean distance from q
to it's closest point in r
and if that distance is less than the current best distance, return true
Implements mpblocks::kd_tree::NearestSearchIface< Traits >.
Definition at line 87 of file KNearest.hpp.
|
protected |
Definition at line 58 of file KNearest.h.
|
protected |
Definition at line 56 of file KNearest.h.
|
protected |
Definition at line 57 of file KNearest.h.