FLANN in OpenCV
- FLANN_INDEX_LSH = 6
- index_params = dict(algorithm=FLANN_INDEX_LSH, table_number=6, key_size=12, multi_probe_level=1)
- search_params = dict(checks=50)
- orb = cv2.ORB_create()
- kp1, des1 = orb.detectAndCompute(img1_gray, None)
- kp2, des2 = orb.detectAndCompute(img2_gray, None)
-