spherical.py 文件源码

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

项目:monodepth360 作者: srijanparmeshwar 项目源码 文件源码
def lat_long_to_equirectangular_uv(S, T):
    # Convert latitude and longitude to UV coordinates
    # on an equirectangular plane.
    u = tf.mod(S / (2.0 * np.pi) - 0.25, 1.0)
    v = tf.mod(T / np.pi, 1.0)
    return u, v

# General rotation function given angles in (x, y, z) axes.
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号