cube_reconstruction.py 文件源码

python
阅读 24 收藏 0 点赞 0 评论 0

项目:3Dreconstruction 作者: alyssaq 项目源码 文件源码
def plot_cube(points3d, title=''):
    fig = plt.figure()
    fig.suptitle(title, fontsize=16)
    ax = fig.gca(projection='3d')
    ax.set_aspect('equal')
    ax.plot(points3d[0], points3d[1], points3d[2], 'b.')
    ax.set_xlabel('x axis')
    ax.set_ylabel('y axis')
    ax.set_zlabel('z axis')
    ax.view_init(elev=135, azim=90)
    return ax
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号