1 | initial version |
And if you have matched object keypoints with scene keypoints you do it like this to get the matches coordinates:
match_in_object = keypoints_object[ match[i].trainIdx ].pt;
match_in_scene = keypoints_scene[ match[i].queryIdx ].pt;