flann table_number改为1

This commit is contained in:
zhbaor 2024-08-11 17:05:53 +08:00
parent 97484fdb02
commit e658e090c9

View file

@ -39,9 +39,9 @@ FLANN_INDEX_LSH = 6
index_params = dict(
algorithm=FLANN_INDEX_LSH,
table_number=6, # 12
key_size=12, # 20
multi_probe_level=0, # 2
table_number=1,
key_size=12,
multi_probe_level=0,
)
search_params = dict(checks=50) # 100
flann = cv2.FlannBasedMatcher(index_params, search_params)