First time here? Check out the FAQ!
answered 2019-11-19 01:22:46 -0600
you can use the "ratio test"
from the tutorial :
# Apply ratio test good = [] for m,n in matches: if m.distance < 0.75*n.distance: good.append([m]) # now use the 'good' matches ...