Skip to content

Commit 28cfb07

Browse files
authored
FLANN_INDEX_KDTREE = 0 -> 1
0 corresponds to FLANN_INDEX_LINEAR
1 parent 9cb1343 commit 28cfb07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/py_tutorials/py_calib3d/py_epipolar_geometry/py_epipolar_geometry.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ kp1, des1 = sift.detectAndCompute(img1,None)
8686
kp2, des2 = sift.detectAndCompute(img2,None)
8787

8888
# FLANN parameters
89-
FLANN_INDEX_KDTREE = 0
89+
FLANN_INDEX_KDTREE = 1
9090
index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
9191
search_params = dict(checks=50)
9292

0 commit comments

Comments
 (0)