Replies: 2 comments 1 reply
-
Hello About the artifacts you observe when using dense sdfs at high resolution: Surface Value Inconsistencies: Questions About Sparse SDFs:
Please let me know if I should provide c++ or python code about how to set certain parameters. I think you can find all you need in the SDF snippet that comes with the PhysX SDK but maybe further explanations are required. Hope that helps |
Beta Was this translation helpful? Give feedback.
-
Hi @nvtw ! Thank you for your detailed response regarding the SDF implementation. I have some follow-up questions and observations based on your explanations. Regarding Dense SDF Artifacts: Surface Value Inconsistencies: Questions about Sparse SDFs:
The PhysX SDK examples have been extremely helpful in our implementation. Could you please point us to the specific query function we should use for sparse SDFs? Thank you! |
Beta Was this translation helpful? Give feedback.
-
Following up on my previous post about SDFs (Signed Distance Fields) in PhysX, I'd like to discuss some challenges we've encountered while implementing them in our stack.
Dense SDF Resolution Issues
Breaking Point at Fine Resolutions
We've discovered that Dense SDFs exhibit problematic behavior when the spacing resolution goes below 0.005m. Specifically, we're seeing inaccurate distance values in regions where they should be positive (greater than 0). For comparison, I've attached visualizations showing SDF behavior at:
In these visualizations, we're only displaying the zero-value isosurface (the surface of our meshes). We're trying to understand the root cause of this degradation and potential solutions.
Surface Value Inconsistencies
When examining values near mesh surfaces in our Dense SDF (at 0.01m spacing), we've observed inconsistent distance measurements. Points that should be equidistant from the surface can show variations of up to 1cm. We're looking for approaches to improve this precision.
Questions About Sparse SDFs
We're also seeking clarification about SDFs in the isaac simulator:
I've attached a visualization from the ISAAC simulator for reference.
Any insights into these issues would be greatly appreciated, particularly regarding:
Beta Was this translation helpful? Give feedback.
All reactions