Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

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 ...