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
Hello, It was a very helpful project. I am trying to get the camera pose from the image correspondences. but when i am giving the whole video as frames some of the frames are getting 0 or less 3 matches .
Thank you for reporting this issue. Can you please try out with the latest version of the repo, and, if the issue still occurs, share an example of input that reproduces it?
Hello, It was a very helpful project. I am trying to get the camera pose from the image correspondences. but when i am giving the whole video as frames some of the frames are getting 0 or less 3 matches .
` extractor = SuperPoint(max_num_keypoints=2048)
matcher = LightGlue(features='superpoint')
feats0 = extractor.extract(image0)
feats1 = extractor.extract(image1)
matches01 = matcher({'image0': feats0, 'image1': feats1})
feats0, feats1, matches01 = [rbd(x) for x in [feats0, feats1, matches01]] # remove batch dimension
`
The text was updated successfully, but these errors were encountered: