-
Notifications
You must be signed in to change notification settings - Fork 124
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
[SignedDistanceField] add module #1035
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Mathieu,
thanks a lot for this great work.
I played quite extensively with the filter, and it works great (although I found that the FastMarchingBand was really really off, and that the Fast Marching was extremely slow!!!) But I guess that's fine. The default backend is doing a great job and looks fairly efficient.
Can you please address the few comments I posted in the code?
Thanks a lot!
alright, looks good! |
This PR adds a module to compute a signed distance field given a triangulation representing a surface.
It implements an exact backend (accelerated with a BVH data structure), the fast marching backend [Sethian, 1996] being a fast approximation and the fast marching band method, a variant of the fast marching, being faster than the latter but also being a less good approximation.