Click here to Skip to main content
15,885,366 members
Articles / Programming Languages / C#

Fortune's Voronoi algorithm implemented in C#

Rate me:
Please Sign up or sign in to vote.
2.95/5 (31 votes)
21 Apr 2013MPL2 min read 452K   3.4K   51   134
A C# implementation of the Fortune algorithm to compute 2D Voronoi graphs.

NOTE: Code has moved to Google Code! 

Introduction 

Given a set of two dimensional vectors (or data points), a Voronoi graph is a separation of those points into compartments where all points inside one compartment are closer to the contained data point than to any other data point. I won't give any demonstration here, but if you want to know more about Voronoi graphs, check out this.

The applications of Voronoi graphs are quite broad. Very useful for a lot of optimization problems (in most cases, the Delaunay Triangulation which can be easily derived from a Vononoi graph is used there), it ranges to computing topological maps from bitmaps.

[This is an article for freaks. After a rather painful experience writing the thing I hope it will benefit everyone who is looking for this algorithm in a civilized language (or simply does not want to use Fortune's original C implementation).]

In 1987, Steve Fortune described an algorithm to compute such a graph by using a sweep line in combination with a binary tree. A PowerPoint explanation of the algorithm (the one I used to implement it) can be found here. Note that I did not use the linked data structure to represent a graph - I think that is an unnecessary difficulty in the age of ArrayLists and HashSets.

The Implementation

Data points are represented by my own Vector class. It can do much more than needed here (but there was no reason to strip it before bringing it) but I won't explain it here. The most important fact is that although working with doubles the Vector class automatically rounds values to 10 digits (or whatever is set in the Vector.Precision field). Yes, sadly, this is very important if you want to sort of compare doubles.

A VoronoiGraph is a class that only contains a HashSet of vertices (as 2D vectors) and a HashSet of VoronoiEdges - each with references to the left and right data point and (of course) the two vertices that bound the edge. If the edge is (partially or completely) unbounded, the vector Fortune.VVUnknown is used.

BinaryPriorityQueue is used for the sweep line event queue.

Usage

The algorithm itself (Fortune.ComputeVoronoiGraph(IEnumerable)) takes any IEnumerable containing only two dimensional vectors. It will return a VoronoiGraph. The algorithm's complexity is O(n ld(n)) with a factor of about 10 microseconds on my machine (2GHz).

License

This article, along with any associated source code and files, is licensed under The Mozilla Public License 1.1 (MPL 1.1)


Written By
Software Developer (Senior)
Germany Germany
I did my diploma in Dresden and Sydney where I dealt with algorithms, agents and other cool AI stuff. Now I moved to Frankfurt to work on my PhD dealing with software structures for artificial intelligence systems. If I can, I do things in C# and ASP.NET, but if I have to, my C++, Java and SQL are not that bad.
Long Live .NET.

Comments and Discussions

 
GeneralRe: My vote of 5 Pin
Member 868370514-May-12 21:38
Member 868370514-May-12 21:38 
GeneralRe: My vote of 5 Pin
maurice.calvert15-May-12 4:56
maurice.calvert15-May-12 4:56 
Generalplease help soon Pin
daskan8-Aug-09 1:55
daskan8-Aug-09 1:55 
QuestionVoronoi Cells Pin
C-Bl27-Jul-09 23:08
C-Bl27-Jul-09 23:08 
Answer3 data points case Pin
SOAD_21-Jun-09 6:08
SOAD_21-Jun-09 6:08 
GeneralRe: 3 data points case Pin
rhill-ca26-Jun-09 6:45
rhill-ca26-Jun-09 6:45 
GeneralThiessen Polygons Pin
SOAD_19-Jun-09 14:46
SOAD_19-Jun-09 14:46 
GeneralAnother wrong vertex Pin
Sunil Terkar11-May-09 2:04
Sunil Terkar11-May-09 2:04 
Ben,

For following another set of points, algorithum misses the vertex by almost 250 mt.

NODE_ID EASTING NORTHING
6 10494.00016 10092.53629
7 10290.7531 10684.97519
8 9947.773702 11043.95948
9 9776.284008 11059.26798
10 10991.95541 10217.30055
11 10057.01902 10092.5363

It gives 8 edges and 3 vertex, but due to wrong location of vertex 3, egde no 6,7 and 8 have not come out properly. Actual location of vertex 3 should be 9819.40,10578.40. I strongly feel that it should have 4 vertexes.

Could you please look into it.
Thanks,
Sunil Terkar
GeneralRe: Another wrong vertex Pin
BenDi11-May-09 10:03
BenDi11-May-09 10:03 
GeneralRe: Another wrong vertex Pin
Sunil Terkar12-May-09 0:37
Sunil Terkar12-May-09 0:37 
GeneralRe: Another wrong vertex Pin
Sunil Terkar12-May-09 5:09
Sunil Terkar12-May-09 5:09 
GeneralRe: Another wrong vertex Pin
rhill-ca26-Jun-09 6:34
rhill-ca26-Jun-09 6:34 
GeneralShort of one edge and one vertex Pin
Sunil Terkar5-May-09 23:11
Sunil Terkar5-May-09 23:11 
GeneralRe: Short of one edge and one vertex Pin
rhill-ca26-Jun-09 6:31
rhill-ca26-Jun-09 6:31 
Generalmedial axis Pin
led16-Apr-09 9:38
led16-Apr-09 9:38 
GeneralThanks! Pin
Reconstructivism30-Mar-09 2:48
Reconstructivism30-Mar-09 2:48 
GeneralRays Pin
Wayne Romer22-Mar-09 20:55
Wayne Romer22-Mar-09 20:55 
GeneralRe: Rays Pin
Reconstructivism30-Mar-09 2:56
Reconstructivism30-Mar-09 2:56 
GeneralRe: Rays Pin
BenDi30-Mar-09 8:57
BenDi30-Mar-09 8:57 
GeneralRe: Rays Pin
Pavel Vladov29-Apr-09 0:54
Pavel Vladov29-Apr-09 0:54 
GeneralRe: Rays Pin
BenDi29-Apr-09 9:49
BenDi29-Apr-09 9:49 
GeneralRe: Rays Pin
Pavel Vladov29-Apr-09 23:39
Pavel Vladov29-Apr-09 23:39 
GeneralRe: Rays Pin
BenDi30-Apr-09 8:04
BenDi30-Apr-09 8:04 
GeneralRe: Rays Pin
Pavel Vladov30-Apr-09 22:36
Pavel Vladov30-Apr-09 22:36 
GeneralRe: Rays Pin
Slagh14-May-09 22:10
Slagh14-May-09 22:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.