Searched defs:bbf_node (Results 1 – 1 of 1) sorted by relevance
313 struct bbf_node { // info on branches not taken struct in CvKDTree314 int node; // corresponding node315 accum_type dist; // minimum distance from bounds to query point316 bbf_node(int _node, accum_type _dist) in bbf_node() function319 bool operator<(const bbf_node & rhs) const { in operator <()