ボロノイ図を使いポリゴン図形の中に中心線を引く

make center line at polygons , using voronoi.

ポリゴンを構成する頂点列から、ポリゴン内に中心線を生成する。中心線の生成にはボロノイ図を用いる。入力としたポリゴン内の長いエッジに対しては細分化を行い、ボロノイ図を生成。生成したボロノイ図を構成するエッジの内、ポリゴン内にあるもののみを抽出すると、そのエッジはポリゴンの中心線のような形状となる。
generate center line in the polygon from the vertex sequence constituting the polygon. at generate we use voronoi diagrams . For long edges in the input polygon, subdivide it and generate Voronoi diagram. When extracting only those in the polygon out of the edges constituting the generated Voronoi diagram, the edge has a shape like the center line of the polygon.

なお、今回扱うポリゴン頂点列のフォーマットしては下記の様なものとしてある。ポリゴンが複数ある場合は、下記を一つのテキストファイルに複数記述することで複数ポリゴンを表現できる。
The format of the polygon vertex sequence handled this time is as follows. If there are multiple polygons, you can express multiple polygons by describing the following in one text file.

XY .. 固定(fixed)
point num .. ポリゴンを形成する頂点数
      (number of vertives forming a polygon)
x1 y1 .. 頂点1つを表すX-Y座標。
    (XY coordinates representing one vertex)


■頂点座標指定のイメージ図(format sample image)
polygon points format sample

最初に生成する中心線の結果画像を示す。青色がポリゴン図形、白線がボロノイ図、緑線が中心線となる。
At first, show results image of the center line generated. Blue is a polygon figure, a white line is a Voronoi diagram, and a green line is a center line.
005_c_inpol_vol_pnt.png

入力としたポリゴン頂点を表すテキストファイルは下記
the input polygon vertex text is as follow URL.
http://hello-python.com/imgs/201901/point_list

■sample code

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です