Is there an implementation of the geodesic voronoi diagram in a simple polygon usable from Python?

170 Views Asked by At

As the title states, I am trying to find an implementation of the geodesic voronoi diagram in a simple polygon. Ideally it would be usable from Python. It is sometimes referred to as the shortest path voronoi diagram.

It is the voronoi diagram of points contained within a non-convex bounding polygon where the shortest paths determining the voronoi cells are constrained to be within the polygon. Note this is not the same as simply clipping a standard voronoi diagram with a bounding polygon, - the cells are generated within a 2D polygon.

This is a simple illustration of a standard voronoi diagram clipped to a bounding polygon:

enter image description here

And this is a simple illustration of the geodesic voronoi diaram generated within the polygon:

enter image description here

I have come across four papers that describe this and some algorithms to achieve it:

I have also found a video that describes it where the points are also moving within the polygon:

Ideally any implementation would be usable from Python but any implementations at all would be appreciated to start with.

Many thanks.

0

There are 0 best solutions below