-
Notifications
You must be signed in to change notification settings - Fork 49
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
Voronoi Lifting (Pointcloud to Hypergraph) #34
base: main
Are you sure you want to change the base?
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hello, @PatRyg99 ! 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. |
Description
This lifting builds Voronoi hypergraph based on the given pointcloud through support set sampled with Farthest-Point Sampling (FPS). Formally, Voronoi graph$G = (V, E)$ of point cloud $\mathcal{X}$ based on the support point set $\mathcal{Y}$ is built in following fashion:
In this lifting procedure$\mathcal{Y} \subseteq \mathcal{X}$ is sampled via FPS, and $d(\cdot, \cdot)$ is Euclidean distance metric. Since we built a hypergraph instead of a graph there is exactly one hyperedge $H_{y_i}$ for every $y_i \in \mathcal{Y}$ (representing the Voronoi cluster for point $y_i$ ) and it is defined in the following way:
Visualization of Voronoi lifting on stanford bunny (each color cluster is a different hyperedge):
Authors & references
This lifting is adapted from Suk et al. LaB-GATr (GitHub repo).
Implemented by team MIA-UT: Julian Suk (@sukjulian), Patryk Rygiel (@PatRyg99)