MIT-SPARK / TEASER-plusplus

A fast and robust point cloud registration library
MIT License
1.81k stars 344 forks source link

[QUESTION] #142

Closed manuelli closed 2 years ago

manuelli commented 2 years ago

Have you read the documentation?

Is there a way to access the valid field of RegistrationResult from python? It seems that in python the returned result doesn't have the field valid. Additionally is there a way to access the underlying certificate (or lack thereof) or check the max inlier clique size from python?

Thanks,

Lucas

jingnanshi commented 2 years ago

Hi @manuelli

  1. You are right that the field valid is not present in the Python binding. I can add that to the binding for you.
  2. Max inlier clique size can be accessed from getInlierMaxClique method on the solver.
  3. You need to run the certifier separately.

Let me know if you have additional questions.