空间数据结构和算法 (scipy.spatial)#

scipy.spatial 可以利用 Qhull 库来计算一系列点的三角形剖分、Voronoi 图和凸包。

此外,它包含用于最近邻点查询的 KDTree 实现,以及用于各种指标距离计算的实用程序。

Delaunay 三角形剖分#

德劳内三角剖分是一个将点集划分为一组不重叠的三角形的算法,使得每个点都不在任何三角形的外接圆内。在实践中,这种三角剖分通常会避免使用小角度的三角形。

可以使用 scipy.spatial 按照如下方法计算德劳内三角剖分

>>> from scipy.spatial import Delaunay
>>> import numpy as np
>>> points = np.array([[0, 0], [0, 1.1], [1, 0], [1, 1]])
>>> tri = Delaunay(points)

我们可以将其可视化

>>> import matplotlib.pyplot as plt
>>> plt.triplot(points[:,0], points[:,1], tri.simplices)
>>> plt.plot(points[:,0], points[:,1], 'o')

并添加一些额外的装饰

>>> for j, p in enumerate(points):
...     plt.text(p[0]-0.03, p[1]+0.03, j, ha='right') # label the points
>>> for j, s in enumerate(tri.simplices):
...     p = points[s].mean(axis=0)
...     plt.text(p[0], p[1], '#%d' % j, ha='center') # label triangles
>>> plt.xlim(-0.5, 1.5); plt.ylim(-0.5, 1.5)
>>> plt.show()
"This code generates an X-Y plot with four green points annotated 0 through 3 roughly in the shape of a box. The box is outlined with a diagonal line between points 0 and 3 forming two adjacent triangles. The top triangle is annotated as #1 and the bottom triangle is annotated as #0."

三角剖分的结构以如下方式进行编码:simplices 属性包含构成三角形的 points 数组中点的索引。例如

>>> i = 1
>>> tri.simplices[i,:]
array([3, 1, 0], dtype=int32)
>>> points[tri.simplices[i,:]]
array([[ 1. ,  1. ],
       [ 0. ,  1.1],
       [ 0. ,  0. ]])

此外,还可以找到相邻三角形

>>> tri.neighbors[i]
array([-1,  0, -1], dtype=int32)

这告诉我们此三角形将三角形 #0 作为相邻项,但没有其他相邻项。此外,还告诉我们相邻项 0 位于三角形的点 1 的对面

>>> points[tri.simplices[i, 1]]
array([ 0. ,  1.1])

的确,从图中,我们可以看到情况正是如此。

Qhull 还可以对高维点集执行到单纯形的镶嵌(例如,在 3D 中细分到四面体)。

共面点#

必须指出,由于在构建三角剖分时存在数值精度问题,并非所有 点都必然作为三角剖分的顶点出现。考虑上面包含重复点的示例

>>> points = np.array([[0, 0], [0, 1], [1, 0], [1, 1], [1, 1]])
>>> tri = Delaunay(points)
>>> np.unique(tri.simplices.ravel())
array([0, 1, 2, 3], dtype=int32)

请注意,重复点 #4 并未作为三角剖分的点出现。已记录此问题

>>> tri.coplanar
array([[4, 0, 3]], dtype=int32)

这意味着点 4 位于三角形 0 和点 3 附近,但未包含在三角剖分中。

请注意,此类简并不仅会因为重复点而发生,还会因为更复杂的几何原因发生,甚至会在乍一看似乎合理的点集中发生。

但是,Qhull 具有“QJ”选项,指示它随机扰动输入数据,直到解析简并。

>>> tri = Delaunay(points, qhull_options="QJ Pp")
>>> points[tri.simplices]
array([[[1, 0],
        [1, 1],
        [0, 0]],
       [[1, 1],
        [1, 1],
        [1, 0]],
       [[1, 1],
        [0, 1],
        [0, 0]],
       [[0, 1],
        [1, 1],
        [1, 1]]])

出现了两个新的三角形。但是,我们看到它们是简并的,并且面积为零。

凸包#

凸包是包含给定点集中所有点的最小的凸对象。

可以使用 scipy.spatial 中的 Qhull 封装程序按如下方法计算它们

>>> from scipy.spatial import ConvexHull
>>> rng = np.random.default_rng()
>>> points = rng.random((30, 2))   # 30 random points in 2-D
>>> hull = ConvexHull(points)

凸包表示为一组 N 个 1-D 单纯形,在 2-D 中表示为线段。存储方案与上面讨论的德劳内三角剖分中的单纯形完全相同。

我们可以说明上述结果

>>> import matplotlib.pyplot as plt
>>> plt.plot(points[:,0], points[:,1], 'o')
>>> for simplex in hull.simplices:
...     plt.plot(points[simplex,0], points[simplex,1], 'k-')
>>> plt.show()
"This code generates an X-Y plot with a few dozen random blue markers randomly distributed throughout. A single black line forms a convex hull around the boundary of the markers."

使用 scipy.spatial.convex_hull_plot_2d 可以实现同样的功能。

Voronoi 图#

Voronoi 图是将空间细分为一些给定点集的最近邻域。

可以通过使用 scipy.spatial 中的 KDTree 来处理这个对象。首先,可以使用 KDTree 来解决“这些点中哪个点最接近这个点”的问题,并以此定义区域。

>>> from scipy.spatial import KDTree
>>> points = np.array([[0, 0], [0, 1], [0, 2], [1, 0], [1, 1], [1, 2],
...                    [2, 0], [2, 1], [2, 2]])
>>> tree = KDTree(points)
>>> tree.query([0.1, 0.1])
(0.14142135623730953, 0)

因此,点 (0.1, 0.1) 属于区域 0。颜色表示:

>>> x = np.linspace(-0.5, 2.5, 31)
>>> y = np.linspace(-0.5, 2.5, 33)
>>> xx, yy = np.meshgrid(x, y)
>>> xy = np.c_[xx.ravel(), yy.ravel()]
>>> import matplotlib.pyplot as plt
>>> dx_half, dy_half = np.diff(x[:2])[0] / 2., np.diff(y[:2])[0] / 2.
>>> x_edges = np.concatenate((x - dx_half, [x[-1] + dx_half]))
>>> y_edges = np.concatenate((y - dy_half, [y[-1] + dy_half]))
>>> plt.pcolormesh(x_edges, y_edges, tree.query(xy)[1].reshape(33, 31), shading='flat')
>>> plt.plot(points[:,0], points[:,1], 'ko')
>>> plt.show()
" "

然而,这不会将 Voronoi 图表示为一个几何对象。

可以通过 scipy.spatial 中的 Qhull 包装器重新获取按线段和点表示形式

>>> from scipy.spatial import Voronoi
>>> vor = Voronoi(points)
>>> vor.vertices
array([[0.5, 0.5],
       [0.5, 1.5],
       [1.5, 0.5],
       [1.5, 1.5]])

Voronoi 顶点表示形成 Voronoi 区域的多边形边缘的点集。本例中有 9 个不同的区域。

>>> vor.regions
[[], [-1, 0], [-1, 1], [1, -1, 0], [3, -1, 2], [-1, 3], [-1, 2], [0, 1, 3, 2], [2, -1, 0], [3, -1, 1]]

负值 -1 再次指示无穷远的一个点。事实上,所有区域中只有一个区域 [0, 1, 3, 2] 是受限的。此处请注意,由于上述 Delaunay 三角剖分中的类似数值精度问题,Voronoi 区域可能比输入点更少。

分隔区域的脊(2D 中的线段)被描述为与凸包块相似的单纯形集合。

>>> vor.ridge_vertices
[[-1, 0], [-1, 0], [-1, 1], [-1, 1], [0, 1], [-1, 3], [-1, 2], [2, 3], [-1, 3], [-1, 2], [1, 3], [0, 2]]

这些数字表示构成线段的 Voronoi 顶点的索引。-1 表示无穷远点——只有 12 条线段中有 4 条是有界线段,而其他线段都延伸到无穷远。

Voronoi 脊线垂直于在输入点之间绘制的线段。每个脊线对应的两个点也被记录下来。

>>> vor.ridge_points
array([[0, 3],
       [0, 1],
       [2, 5],
       [2, 1],
       [1, 4],
       [7, 8],
       [7, 6],
       [7, 4],
       [8, 5],
       [6, 3],
       [4, 5],
       [4, 3]], dtype=int32)

这些信息合在一起足够构建完整的图表。

我们可以如下绘制图表。首先,绘制点和 Voronoi 顶点。

>>> plt.plot(points[:, 0], points[:, 1], 'o')
>>> plt.plot(vor.vertices[:, 0], vor.vertices[:, 1], '*')
>>> plt.xlim(-1, 3); plt.ylim(-1, 3)

绘制有限线段的过程与绘制凸包相同,但现在我们必须注意无穷远边缘。

>>> for simplex in vor.ridge_vertices:
...     simplex = np.asarray(simplex)
...     if np.all(simplex >= 0):
...         plt.plot(vor.vertices[simplex, 0], vor.vertices[simplex, 1], 'k-')

延伸到无穷远的脊线需要格外小心

>>> center = points.mean(axis=0)
>>> for pointidx, simplex in zip(vor.ridge_points, vor.ridge_vertices):
...     simplex = np.asarray(simplex)
...     if np.any(simplex < 0):
...         i = simplex[simplex >= 0][0] # finite end Voronoi vertex
...         t = points[pointidx[1]] - points[pointidx[0]]  # tangent
...         t = t / np.linalg.norm(t)
...         n = np.array([-t[1], t[0]]) # normal
...         midpoint = points[pointidx].mean(axis=0)
...         far_point = vor.vertices[i] + np.sign(np.dot(midpoint - center, n)) * n * 100
...         plt.plot([vor.vertices[i,0], far_point[0]],
...                  [vor.vertices[i,1], far_point[1]], 'k--')
>>> plt.show()
" "

您还可使用 scipy.spatial.voronoi_plot_2d 创建此绘图。

可使用 Voronoi 图创建有趣的生成型艺术。尝试播放此 mandala 函数的设置,创建自己的艺术!

>>> import numpy as np
>>> from scipy import spatial
>>> import matplotlib.pyplot as plt
>>> def mandala(n_iter, n_points, radius):
...     """Creates a mandala figure using Voronoi tessellations.
...
...     Parameters
...     ----------
...     n_iter : int
...         Number of iterations, i.e. how many times the equidistant points will
...         be generated.
...     n_points : int
...         Number of points to draw per iteration.
...     radius : scalar
...         The radial expansion factor.
...
...     Returns
...     -------
...     fig : matplotlib.Figure instance
...
...     Notes
...     -----
...     This code is adapted from the work of Audrey Roy Greenfeld [1]_ and Carlos
...     Focil-Espinosa [2]_, who created beautiful mandalas with Python code.  That
...     code in turn was based on Antonio Sánchez Chinchón's R code [3]_.
...
...     References
...     ----------
...     .. [1] https://www.codemakesmehappy.com/2019/09/voronoi-mandalas.html
...
...     .. [2] https://github.com/CarlosFocil/mandalapy
...
...     .. [3] https://github.com/aschinchon/mandalas
...
...     """
...     fig = plt.figure(figsize=(10, 10))
...     ax = fig.add_subplot(111)
...     ax.set_axis_off()
...     ax.set_aspect('equal', adjustable='box')
...
...     angles = np.linspace(0, 2*np.pi * (1 - 1/n_points), num=n_points) + np.pi/2
...     # Starting from a single center point, add points iteratively
...     xy = np.array([[0, 0]])
...     for k in range(n_iter):
...         t1 = np.array([])
...         t2 = np.array([])
...         # Add `n_points` new points around each existing point in this iteration
...         for i in range(xy.shape[0]):
...             t1 = np.append(t1, xy[i, 0] + radius**k * np.cos(angles))
...             t2 = np.append(t2, xy[i, 1] + radius**k * np.sin(angles))
...
...         xy = np.column_stack((t1, t2))
...
...     # Create the Mandala figure via a Voronoi plot
...     spatial.voronoi_plot_2d(spatial.Voronoi(xy), ax=ax)
...
...     return fig
>>> # Modify the following parameters in order to get different figures
>>> n_iter = 3
>>> n_points = 6
>>> radius = 4
>>> fig = mandala(n_iter, n_points, radius)
>>> plt.show()
" "