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 links,tutorials,codes etc related to it?
Thanks in advance.
|
feedback
|
|
Here's an algorithm that uses the distance transform together with the watershed algorithm to draw a Voronoi diagram for ellipses.
| |||||||||||
feedback
|
|
Just in case, this is an example from the Mathematica help system:
It is not an exact calculation, but fair enough for practical uses. | ||||
|
feedback
|
|
Based on your recent track of questions, I understand that you've been working on drawing rasterized ellipses on top of an RGB image. You would like to be able to specify the ellipses location, shape and color. You wanted the ellipses to be clipped at the boundaries, and also to be non-overlapping. Now you are looking to draw the lines that divides the space in a manner similar to Voronoi diagrams (but with ellipses instead of points). For this particular question, as @Jonas showed, the solution is to use the distance transform together with the watershed algorithm. I thought I continue with my previous example, and extend it with Jonas's idea, to showcase the entire process. Hope you find it useful.. The code uses the
| |||||||||||
feedback
|
|
I dont know what you mean with "ellipses" here. But there is a implementation for voronoi diagrams of in C++ by Stephan Fortune / Shane O'Sullivan, | |||
|
feedback
|