首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏图像处理与模式识别研究所

    演示随机点的高分辨率三轮廓同时提高绘图质量。

    linestyles='--') # 3) plot of the fine mesh on which interpolation was done: if plot_refi_tri: ax.triplot (tri_refi, color='0.97') # 4) plot of the initial 'coarse' mesh: if plot_tri: ax.triplot(tri, color 4) plot of the unvalidated triangles from naive Delaunay Triangulation: if plot_masked_tri: ax.triplot

    37220编辑于 2022-05-28
  • 来自专栏算法channel

    适合练手的 60 个matplotlib小项目

    matplotlib.tri as tri data = np.random.rand(100, 2) triangles = tri.Triangulation(data[:,0], data[:,1]) plt.triplot

    56220发布于 2020-11-03
  • 来自专栏图像处理与模式识别研究所

    演示在用户定义的三角形网格上进行高分辨率三角剖分。

    ------------------------------------------------ fig, ax = plt.subplots() ax.set_aspect('equal') ax.triplot

    38610编辑于 2022-05-28
  • 来自专栏Datawhale专栏

    如何在科研论文中画出漂亮的插图?

    plt.triplot(x, y, triangles, 'go-') plt.title('triplot of user-specified triangulation') plt.xlabel('

    1.5K21发布于 2020-07-17
  • 来自专栏小小挖掘机

    适合练手的 60 个matplotlib小项目

    matplotlib.tri as tri data = np.random.rand(100, 2) triangles = tri.Triangulation(data[:,0], data[:,1]) plt.triplot

    68920发布于 2020-11-24
  • 来自专栏给永远比拿愉快

    Voronoi多边形和Delaunay三角剖分

    import matplotlib.pyplot as plt points = np.random.rand(10, 2) # 随机生成10个2维点 tri = Delaunay(points) plt.triplot

    3K30发布于 2019-01-22
  • 来自专栏AI派

    用 Python 画如此漂亮的专业插图 ?简直 So easy!

    网络还是什么奇葩的需求都能够搞定: plt.streamplot(X, Y, U, V, color=U, linewidth=2, cmap=plt.cm.autumn) plt.colorbar() plt.triplot (x, y, triangles, 'go-') plt.title('triplot of user-specified triangulation') plt.xlabel('Longitude (

    1.3K10发布于 2021-10-11
  • 来自专栏深度学习和计算机视觉

    如何在科研论文中画出漂亮的插图?

    plt.triplot(x, y, triangles, 'go-') plt.title('triplot of user-specified triangulation') plt.xlabel('

    1.5K21发布于 2021-05-07
领券