open3d.data.RedwoodIndoorLivingRoom1.extract_dir()
方法用于提取 RedwoodIndoorLivingRoom1 数据集的文件,并将这些文件存储在给定目录中。
open3d.data.RedwoodIndoorLivingRoom1.extract_dir(path: str, exist_ok: bool = False) -> str
path
:(str) 存储数据集文件的目录路径。exist_ok
:(bool, 可选) 如果为 True
,则允许指定的目录已存在,程序会将文件提取到该目录。如果为 False
,程序将抛出一个异常,提示目录已存在。import open3d
dataset_directory = open3d.data.RedwoodIndoorLivingRoom1.extract_dir('/path/to/save/dataset/files', exist_ok=True)
print('The RedwoodIndoorLivingRoom1 dataset files are stored in:', dataset_directory)