Drawing Matches
- orb = cv2.ORB_create()
- kp1, des1 = orb.detectAndCompute(gray1, None)
- kp2, des2 = orb.detectAndCompute(gray2, None)
- bf = cv2.BFMatcher(cv2.NORM_HAMMING, crossCheck=True)
- matches = bf.match(des1, des2)
- matches = sorted(matches, key=lambda x: x.distance)
-