I need an algorithm for calculating the convex hull of a set of points from the Voronoi Diagram of the points in O(n). The Voronoi diagram is contained in a bounding box and is stored as a doubly connected edge list. The input is a half edge whose origin is on the bounding box.

I know that two points are adjacent on the convex hull iff they share an infinitely long voronoi edge...

link|improve this question

Why can't you just walk round the convex hull from one infinite edge to the next? I think you might want to say a bit more about how the problem is represented, so that we can appreciate the difficulty. – Gareth Rees Nov 25 '10 at 14:09
I guess the harder part of the problem is a test for whether a particular edge on the voronoi diagram would indeed continue to infinity were it not bounded in the bounding box. Also, since the voronoi diagram and bounding box are stored as a doubly connected edge list, the other challenging part is figuring out how to correctly traverse the DCEL. Either way, I came up with a solution that worked. Maybe I'll write it up here sometime soon. – wallacer Nov 26 '10 at 0:19
feedback

1 Answer

If you have a bounding box large enough so that only infinite cells have bounding edges, the task doesn't seem tough. Iterate through the bounding edges, for each of them, traverse it forward and backward to find first non-bounding edges F and B. Mark current and all bounding edges found during traverse as used. Edges F and B would be infinite if the box won't exist. Thus, they touch faces (fF and fB) who's 'centers' are part of the convex hull (current face is C), and cross-edge C-to-F is the part of a convex hull. Take face fF and iterate from the F's twin forward to find next non-bounding edge, say, F1. If it's equal to 'B'-twin (or it's bounding edges were used), we are finished. If not, traverse the next neighbour ('fF1').

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.