Boundary enclosing a given set of points

后端 未结 4 1730
再見小時候
再見小時候 2020-12-14 13:17

I am having a bit of a problem with an algorithm that I am currently using. I wanted it to make a boundary.

Here is an example of the current behavior:

4条回答
  •  难免孤独
    2020-12-14 14:16

    Consider using an Alpha Shape, sometimes called a Concave Hull. https://en.wikipedia.org/wiki/Alpha_shape

    It can be built from the Delaunay triangulation, in time O(N log N).

提交回复
热议问题