normal_texture_path
是Open3D中的一个类open3d.data.MetalTexture
中的属性,用于存储金属纹理的法线贴图的路径。
normal_texture_path
:金属纹理的法线贴图文件路径,类型为字符串。无返回值,仅为类open3d.data.MetalTexture
的一个属性。
import open3d as o3d
# 创建一个金属纹理
metal_texture = o3d.data.MetalTexture()
# 设置法线贴图的路径
metal_texture.normal_texture_path = "/textures/metal_normal.png"
normal_texture_path
属性必须是金属纹理文件夹中法线贴图的完整路径,包括文件名和扩展名。open3d.data.MetalTexture
中使用,不能在其他类中使用。