MIT-SPARK / TEASER-plusplus

A fast and robust point cloud registration library
MIT License
1.69k stars 333 forks source link

[QUESTION] Feature points selection. #151

Closed RyanAnvie closed 2 months ago

RyanAnvie commented 1 year ago

Have you read the documentation?

Post your theoretical questions / usage questions here.

Hi can you explain a little bit explain how you select feature points for registration or are you using entire inlier points to match the two-point sets?

weterking commented 1 year ago

Although I am not the author, but I read the source code, the author seems to be using the FGR method of selecting corresponding points, using the corresponding points initially selected by FGR to perform TEASER

jingnanshi commented 1 year ago

@RyanAnvie Thanks for your interest. @weterking is correct, the matching code is based on FGR. However, the matcher implemented in this repo is not actually used in the paper. The matcher in this repo is served as a general method for users. For the original paper, we just used a k-NN tree to match feature correspondences (from 3DSmoothNet).

LimHyungTae commented 3 months ago

Yeah, it's presented in Section 3.3 of the original FGR paper: see Section 3.3 in https://vladlen.info/papers/fast-global-registration.pdf

LimHyungTae commented 2 months ago

If there are no further questions, we will close the issue :) Thx