gpt4 book ai didi

python - 来自 scipy.spatial.Voronoi 对象的 Voronoi 图边 : How to get edges in the form (point1, point2)?

转载 作者:太空狗 更新时间:2023-10-29 23:59:06 30 4
gpt4 key购买 nike

我现在花了很多时间试图从 scipy.spatial.Voronoi 图中获取边,但无济于事。这是主要文档: http://docs.scipy.org/doc/scipy-dev/reference/generated/scipy.spatial.Voronoi.html

如果您像这样创建 Voronoi 图:

points = np.array([[0, 0], [0, 1], [0, 2], [1, 0], [1, 1], [1, 2],
[2, 0], [2, 1], [2, 2]]) //Or feel free to use any set of points

然后您可以访问以下对象属性:

vor.regions
vor.max_bound
vor.ndim
vor.ridge_dict
vor.ridge_points
vor.ridge_vertices
vor.npoints
vor.point_region
vor.points

但不清楚如何将这些组合起来以获得二维 voronoi 图形式为 (point1, point2) 的边?我知道边存在,因为您可以绘制 voronoi 图及其边和顶点,因为您可以执行以下操作:

voronoi_plot_2d(vor)
plt.show()

enter image description here

它清楚地描述了 voronoi edgres - 如何获得它们的列表以及它们的起点和终点?没关系,如果我只得到实心边缘(不是虚线的边缘)

最佳答案

看看 ridge_vertices 属性:

    ridge_vertices  (list of list of ints, shape (nridges, *))
Indices of the Voronoi vertices forming each Voronoi ridge.

该列表中的每个元素都是一对整数。每个整数都是一个索引进入 vertices 列表。所以每个元素都定义了一条要在维诺图。索引 -1 表示“在无穷远处”的点。

这是绘制 Voronoi 图线条的脚本:

import numpy as np
import matplotlib.pyplot as plt
from scipy.spatial import Voronoi


points = np.array([[0, 0], [0, 1], [0, 2],
[1, 0], [1, 1], [1, 2],
[2, 0], [2, 1], [2, 2]])

vor = Voronoi(points)


fig = plt.figure()

# Mark the Voronoi vertices.
plt.plot(vor.vertices[:,0], vor.vertices[:, 1], 'ko', ms=8)

for vpair in vor.ridge_vertices:
if vpair[0] >= 0 and vpair[1] >= 0:
v0 = vor.vertices[vpair[0]]
v1 = vor.vertices[vpair[1]]
# Draw a line from v0 to v1.
plt.plot([v0[0], v1[0]], [v0[1], v1[1]], 'k', linewidth=2)

plt.show()

它创建:

Voronoi edges

关于python - 来自 scipy.spatial.Voronoi 对象的 Voronoi 图边 : How to get edges in the form (point1, point2)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23658776/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com