Searched defs:bbf_node (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cv/src/
H A D_cvkdtree.hpp313 struct bbf_node { // info on branches not taken struct in class:CvKDTree
316 bbf_node(int _node, accum_type _dist) function in struct:CvKDTree::bbf_node
319 bool operator<(const bbf_node & rhs) const {
323 typedef std::vector < bbf_node > bbf_pqueue;
327 // construct bbf_node given minimum distance to bounds of alternate branch
332 // add bbf_node for alternate branch in priority queue
333 pq.push_back(bbf_node(alt_n, dist));
342 // push bbf_node with bounds of alternate branch, then branch
395 // add root_node to bbf_node priority queue;
398 tmp_pq.push_back(bbf_node(root_nod
[all...]

Completed in 30 milliseconds