Searched refs:SubTree (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/ml/src/ |
D | kdtree.cpp | 82 struct SubTree struct 84 SubTree() : first(0), last(0), nodeIdx(0), depth(0) {} in SubTree() argument 85 SubTree(int _first, int _last, int _nodeIdx, int _depth) in SubTree() argument 195 SubTree stack[MAX_TREE_DEPTH*2]; in build() 205 stack[top++] = SubTree(0, n-1, 0, 0); in build() 258 stack[top++] = SubTree(first, middle, left, depth+1); in build() 259 stack[top++] = SubTree(middle+1, last, right, depth+1); in build()
|