Tagged Questions
10
votes
5answers
2k views
Algorithm to compute a Voronoi diagram on a sphere?
I'm looking for a simple (if exists) algorithm to find the Voronoi diagram for a set of points on the surface of a sphere. Source code would be great. I'm a Delphi man (yes, I know...), but I eat ...
7
votes
5answers
4k views
Easiest algorithm of Voronoi diagram to implement?
What are the easy algorithms to implement Voronoi diagram?
I couldn't find any algorithm specially in pseudo form. Please share some links of Voronoi diagram algorithm, tutorial etc.
Thanks in ...
5
votes
4answers
287 views
Matlab: Algorithm for voronoi diagram of ellipses
Are there any algorithms to implement Voronoi diagram that bounds the ellipses? The diagram would look like the pictures here voronoi diagram of ellipses
Can anyone share some ...
4
votes
1answer
891 views
Fastest way to get the set of convex polygons formed by Voronoi line segments
I used Fortune's Algorithm to find the Voronoi diagram of a set of points.
What I get back is a list of line segments, but I need to know which segments form closed polygons, and put them together in ...
2
votes
4answers
264 views
Voronoi Tessellation in Python
Node Assignment Problem
The problem I want to solve is to tessellate the map given with the Blue Nodes(Source Nodes) as given input points, Once I am able to do this I would like to see how many ...
2
votes
2answers
140 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
3answers
146 views
Voronoi plot, line crossing
I have the following problem. Initially I create 10 points, in a 2-D space, randomly distributed and then I use the Voronoi function to creat polygons. But I want my Voronoi polyhedra to obey a ...
1
vote
5answers
2k views
Confused with Voronoi diagram algorithm (Fortune's sweepline)
I am implementing Voronoi diagram to find out the nearest location in a map visually. Right now I want to do this using integer coordinates (x,y) only in a canvas.
Problem is- I am really confused ...
0
votes
1answer
956 views
Change FloodFill-Algorithm to get Voronoi Territory for two data points?
I got a grid with two points. I want to calculate the amount squares each point can reach before the other. Currently I implement a FloodFill-Algoritm, which can calculate the amount of squares one ...
-2
votes
1answer
150 views
What is incorrect with my Voronoi generator?
import java.awt.Color;
import java.awt.Point;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Random;
import ...