Home
last modified time | relevance | path

Searched refs:FLANN_INDEX_KDTREE (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/modules/flann/include/opencv2/flann/
Ddefines.h84 FLANN_INDEX_KDTREE = 1, enumerator
Dall_indices.h64 case FLANN_INDEX_KDTREE: in create()
Dkdtree_index.h57 (*this)["algorithm"] = FLANN_INDEX_KDTREE;
136 return FLANN_INDEX_KDTREE; in getType()
/external/opencv3/samples/python2/
Dfind_obj.py21 FLANN_INDEX_KDTREE = 1 # bug: flann enums are missing variable
46 flann_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
Dplane_tracker.py35 FLANN_INDEX_KDTREE = 1 variable
/external/opencv3/doc/py_tutorials/py_feature2d/py_feature_homography/
Dpy_feature_homography.markdown53 FLANN_INDEX_KDTREE = 0
54 index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
/external/opencv3/doc/py_tutorials/py_feature2d/py_matcher/
Dpy_matcher.markdown151 index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
182 FLANN_INDEX_KDTREE = 0
183 index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
/external/opencv3/doc/py_tutorials/py_calib3d/py_epipolar_geometry/
Dpy_epipolar_geometry.markdown89 FLANN_INDEX_KDTREE = 0
90 index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
/external/opencv3/modules/flann/src/
Dminiflann.cpp202 p["algorithm"] = FLANN_INDEX_KDTREE; in KDTreeIndexParams()