Searched refs:KDTree (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/ml/src/ |
D | kdtree.hpp | 35 class CV_EXPORTS_W KDTree class 56 CV_WRAP KDTree(); 58 CV_WRAP KDTree(InputArray points, bool copyAndReorderPoints = false); 60 CV_WRAP KDTree(InputArray points, InputArray _labels,
|
D | kdtree.cpp | 62 KDTree::KDTree() in KDTree() function in cv::ml::KDTree 68 KDTree::KDTree(InputArray _points, bool _copyData) in KDTree() function in cv::ml::KDTree 75 KDTree::KDTree(InputArray _points, InputArray _labels, bool _copyData) in KDTree() function in cv::ml::KDTree 158 void KDTree::build(InputArray _points, bool _copyData) in build() 164 void KDTree::build(InputArray __points, InputArray __labels, bool _copyData) in build() 168 std::vector<KDTree::Node>().swap(nodes); in build() 274 int KDTree::findNearest(InputArray _vec, int K, int emax, in findNearest() 417 void KDTree::findOrthoRange(InputArray _lowerBound, in findOrthoRange() 474 void KDTree::getPoints(InputArray _idx, OutputArray _pts, OutputArray _labels) const in getPoints() 519 const float* KDTree::getPoint(int ptidx, int* label) const in getPoint() [all …]
|
D | knearest.cpp | 430 KDTree tr;
|