-
Notifications
You must be signed in to change notification settings - Fork 427
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
Does this algorithm support returning the value of the implicit function at any point? #266
Comments
Unfortunately, the indicator function does not capture distance. In the idealized case, it's a binary function returning 0 or 1 depending on whether you are outside or inside the solid. Methods like the Smoothed Signed Distance (SSD) function are more likely to be a long the lines of what you want since the returned implicit function gives 5he approximate distance from every point to the nearest point on the surface. |
Thanks a lot for your quick reply.
I find that this repository contains the SSD algorithm, but I still haven't found out how to get the returned implicit functions and their parameters in the SSD algorithm. |
I'm assuming 5hat by "parameters" you mean "values". Running with the "--grid" flag will output the values of the function, samples over a regular grid. |
Thanks for your advice. I read the SSD paper carefully to understand this algorithm. And now I understand that this issue's name may be inaccurate, so I have updated it to I found that according to your suggestion, my needs can be solved like this: get the value of the implicit function at the grid points using the flag |
|
The indicator function is mentioned in the approach of the paper Poisson Surface Reconstruction (2006). I want to get the parameters of the indicator function and see it as a signed distance function to calculate the
distance
at any 3D point.Does this algorithm support returning the parameters of the indicator function?
Thank you very much.
The text was updated successfully, but these errors were encountered: