I've been tasked to figure out how to find the centerline of a polygon. My google searches led me to believe that what I need is called the 'Medial Axis'. Like this:
(source: kiev.ua)
According to what I've read, what I need can be produced by using a 2D Voronoi diagram construction algorithm for segments.
I've found a C# version of the Voronoi algorithm on codeplex (FortuneVoronoi) and after applying my polygon to it, I end up with this:
alt text http://www.carbonatlas.com/geonotes/gaia_voronoi.png
The green is the original polygon. The orange are the Voronoi vertices and the black lines are the voronoi edges.
I can see the makings of what I need in those vertices, but I'm unsure of the next step required to filter out all the stuff I don't need.
I'd appreciate any help you can offer.