当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy spatial.convex_hull_plot_2d用法及代码示例


本文简要介绍 python 语言中 scipy.spatial.convex_hull_plot_2d 的用法。

用法:

scipy.spatial.convex_hull_plot_2d(hull, ax=None)#

在二维中绘制给定的凸包图

参数

hull scipy.spatial.ConvexHull 实例

要绘制的凸包

ax matplotlib.axes.Axes 实例,可选

要绘制的轴

返回

fig matplotlib.figure.Figure 实例

图的图

注意

需要 Matplotlib。

例子

>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> from scipy.spatial import ConvexHull, convex_hull_plot_2d

一组随机点的凸包:

>>> rng = np.random.default_rng()
>>> points = rng.random((30, 2))
>>> hull = ConvexHull(points)

绘制它:

>>> _ = convex_hull_plot_2d(hull)
>>> plt.show()
scipy-spatial-convex_hull_plot_2d-1.png

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.spatial.convex_hull_plot_2d。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。