cube_reconstruction.py 文件源码

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

项目:3Dreconstruction 作者: alyssaq 项目源码 文件源码
def plot_projections(points):
    num_images = len(points)

    plt.figure()
    plt.suptitle('3D to 2D Projections', fontsize=16)
    for i in range(num_images):
        plt.subplot(1, num_images, i+1)
        ax = plt.gca()
        ax.set_aspect('equal')
        ax.plot(points[i][0], points[i][1], 'r.')
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号