You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried using superpoint and also dedode as keypoints extractor and then match with RoMa but can't get a proper result. How could I improve the result?
The basic idea is that I firstly extract all keypoints and then normalize the keypoints into range [-1, 1].
And then using roma model to calculate the warp and certainty. then using kpts, warp and certainty as input of match_keypoints. After getting the results I also used ransac to filter some of the matches.
I'm not able to reconstruct the model correctly by this way.
Thus I check the visual result of matches:
Anybody could give me some advice to improve the pipeline? Thanks!
The text was updated successfully, but these errors were encountered:
I've tried using superpoint and also dedode as keypoints extractor and then match with RoMa but can't get a proper result. How could I improve the result?
The basic idea is that I firstly extract all keypoints and then normalize the keypoints into range [-1, 1].
def to_reference_coord(kpt, W, H):
kpts = torch.stack((kpt[..., 0]/(W/2) -1, kpt[..., 1]/(H/2) -1), axis=-1)
return kpts
And then using roma model to calculate the warp and certainty. then using kpts, warp and certainty as input of match_keypoints. After getting the results I also used ransac to filter some of the matches.
I'm not able to reconstruct the model correctly by this way.
Thus I check the visual result of matches:
Anybody could give me some advice to improve the pipeline? Thanks!
The text was updated successfully, but these errors were encountered: