如何获取等高线图绘制的线的 (x,y) 值 (Matplotlib)?
matplotlibpythondata visualization
要获取等高线图绘制的线的 (x, y) 值,我们可以采取以下步骤 −
- 设置图形大小并调整子图之间和周围的填充。
- 使用 contour() 方法创建 3D 等高线图。
- 获取等高线图集合并获取路径。
- 要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True m = [[3, 2, 1, 0], [2, 4, 1, 0], [2, 4, 1, 3], [4, 3, 1, 3]] cs = plt.contour([3, 4, 2, 1], [5, 1, 2, 3], m) p1 = cs.collections[0].get_paths() for item in p1: print(item.vertices) plt.show()