rpautrat / SuperPoint

Efficient neural feature detector and descriptor
MIT License
1.88k stars 416 forks source link

keypoints and descriptors #285

Closed johnren-code closed 1 year ago

johnren-code commented 1 year ago

Hi, I would like to know if the extracted feature points and descriptors can be matched with SuperGlue.

For example, after I get the feature points and descriptors using the function "extract_superpoint_keypoints_and_descriptors" in match_features_demo.py and give them to SuperGlue for processing, is this feasible? Is the format of the feature points and descriptors we get the same as the input format SuperGlue expects?

rpautrat commented 1 year ago

Hi, no SuperGlue has been trained and is expecting the original SuperPoint keypoints and descriptors: https://github.com/magicleap/SuperPointPretrainedNetwork. You should use the pretrained weights of that repo with SuperGlue, otherwise the descriptors will be too different.

johnren-code commented 1 year ago

Sorry, I didn't fully understand you (My English is so poor). As you suggested, I plan to use the feature points and descriptors obtained from the trained SuperPoint to match using the magic leap team's SuperGlue pre-trained weights, is it right?

rpautrat commented 1 year ago

Yes, but you should not use the SuperPoint weights from this repo, but you should instead use the weights from the original SuperPoint (given in the link I provided above).

johnren-code commented 1 year ago

OK, Thank you very much!

rpautrat commented 1 year ago

You are welcome!