-
Notifications
You must be signed in to change notification settings - Fork 49
Delaunay Lifting (Point Cloud to Simplicial) #18
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
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hello @Snopoff! Thank you for your submission. As we near the end of the challenge, I am collecting participant info for the purpose of selecting and announcing winners. Please email me (or have one member of your team email me) at [email protected] so I can share access to the voting form. In your email, please include:
Before July 12, make sure that your submission respects all Submission Requirements laid out on the challenge page. Any submission that fails to meet this criteria will be automatically disqualified. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #18 +/- ##
=======================================
Coverage ? 67.55%
=======================================
Files ? 18
Lines ? 524
Branches ? 0
=======================================
Hits ? 354
Misses ? 170
Partials ? 0 ☔ View full report in Codecov by Sentry. |
This lifting implements the Delaunay triangulation. The lifting uses
scipy.spatial.Delaunay
method in order to compute this triangulation.