将特征数据保存到磁盘中。
write_feature(filename: str, feature: open3d.cpu.pybind.utility.Vector3dVector)
filename
:保存特征的文件路径。支持 .txt
和 .xyz
格式。feature
:特征数据,类型为 open3d.cpu.pybind.utility.Vector3dVector
。无返回值。
import open3d as o3d
# 创建特征数据
feature = o3d.cpu.pybind.utility.Vector3dVector([[1, 2, 3], [4, 5, 6]])
# 保存特征数据
o3d.io.write_feature("feature.txt", feature)
如果特征数据为空,则会抛出 ValueError
异常。如果文件路径无法打开文件,则会抛出 IOError
异常。