Tagged Questions
10
votes
2answers
1k views
Finding near neighbors
I need to find "near" neighbors among a set of points.
There are 10 points in the above image. Red lines are edges from the Delaunay Triangulation, black stars mark the mid-lines of the edges, blue ...
3
votes
6answers
2k views
How do I derive a Voronoi diagram given its point set and its Delaunay triangulation?
I'm working on a game where I create a random map of provinces (a la Risk or Diplomacy). To create that map, I'm first generating a series of semi-random points, then figuring the Delaunay ...
2
votes
2answers
144 views
Fast way to compute the Voronoi diagram knowing the k-nearest neighbours
I know it is relatively easy to compute the sets of k-nearest neighbours from a Voronoi tessellations. What about the reverse problem?
I already have the set of k-nearest neighbours (in 3D) and I ...
1
vote
1answer
117 views
Voronoi from delaunay triangulation
i have almost finished my delaunay / voronoi triangulator and it was hard.
I haven't used the Fortun's code, i created the delaunay triangulatr and i derive the voronoi diagram from that.
There is a ...
1
vote
0answers
91 views
Can anyone recommend a lightweight Voronoi library for .Net?
I need a .Net Voronoi library or geometry library with support for Voronoi diagrams and preferably Delaunay triangulation. The following characteristics are required:
No interop OR if it has an ...
0
votes
1answer
34 views
Computing per-vertex (site) Voronoi cell areas directly from a Delaunay triangulation
I wish to compute the areas of Voronoi cells which relate to a Delaunay triangulation of a point set without explicitly converting the Delaunay triangulation to a Voronoi graph.
Since I only care ...
0
votes
1answer
72 views
Why do the delaunay edges from Matlab's delaunayn() connect points with non-adjacent Voronoi regions?
I am trying to find the points with edge-adjacent Voronoi regions in a given dataset. I'm new to computational geometry, but from reading up online, it appeared that using the Delaunay tessellation ...