当几个点具有相同的颜色时,如何在Python中实现最远点的Voronoi图?

时间:2018-03-28 04:42:17

标签: python scipy voronoi

我试图在Python3中使用scipy.spatial.voronoi(points,furthest_site = True)创建一个最远点的Voronoi图。但是,此功能的输入只能是具有不同颜色的点。如果我有几个相同颜色的点然后使用这些点来生成图表怎么办?

例如,当我有8个输入点时:

points = []
for i in range(8):
    points.append((random.randint(0, 10000), random.randint(0, 10000)))
vor = Voronoi(points,furthest_site=True)
voronoi_plot_2d(vor)

但是,我希望生成如下图:figure1

0 个答案:

没有答案