Open3D的open3d.data.MetalTexture
类提供了材质纹理的功能,其中roughness_texture_path
属性表示材质的粗糙度纹理路径。
roughness_texture_path
(str): 纹理文件的路径。import open3d as o3d
#创建铁材质纹理
metal_texture = o3d.data.MetalTexture()
# 设置粗糙度纹理文件路径
metal_texture.roughness_texture_path = "texture/roughness.jpg"
open3d.visualization.rendering.Material
类时,可以将MetalTexture
类型的对象作为参数传入构造函数来创建材质对象。