-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sift+lightglue #122
Comments
好像训练的时候可以改 |
If I understand your issue correct (please post your issues in english), you want to use SIFT with LightGlue. You need to load the correct weights in LightGlue, with: extractor = SIFT(max_num_keypoints=None).eval().cuda() # load the extractor
matcher = LightGlue(features='sift').eval().cuda() # load the matcher Note that you need to specify which weights to load in the constructor of LightGlue (the SIFT setup is defined here). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sift描述符是128维,lightglue描述符是256维,我该怎么使用SIFT+lightglue呢?
The text was updated successfully, but these errors were encountered: