Commit ad7a6ec4 authored by Alexander Mordvintsev's avatar Alexander Mordvintsev

correct unknown feature report in find_obj.py

parent 3ce5b015
......@@ -19,7 +19,6 @@ FLANN_INDEX_LSH = 6
def init_feature(name):
detector, matcher = None, None
chunks = name.split('-')
if chunks[0] == 'sift':
detector = cv2.SIFT()
......@@ -30,6 +29,8 @@ def init_feature(name):
elif chunks[0] == 'orb':
detector = cv2.ORB(400)
norm = cv2.NORM_HAMMING
else:
return None, None
if 'flann' in chunks:
if norm == cv2.NORM_L2:
flann_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment