Skip to content

Commit

Permalink
Merge pull request #16 from eroniki/fix_#6
Browse files Browse the repository at this point in the history
fix #6
  • Loading branch information
eroniki committed Jun 17, 2019
2 parents de6d02e + 75d970d commit edc9a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion computer_vision.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def extract_features(img, thr=0.005):
return kpts, descs

@staticmethod
def match_meaturs(desc1, desc2):
def match_features(desc1, desc2):
"""Match extracted descriptors, return good matching ones."""
bf = cv2.BFMatcher(cv2.NORM_HAMMING)
matches = bf.knnMatch(desc1, desc2, k=2) # typo fixed
Expand Down

0 comments on commit edc9a9a

Please sign in to comment.