extract_dir
函数是Open3D中EaglePointCloud类的一个方法,用于从.ept文件提取每个bin文件的路径并转化为列表返回。
open3d.data.EaglePointCloud.extract_dir()
该函数没有任何参数。
返回值为包含所有.ept文件中bin文件路径的列表。
import open3d
eagle = open3d.data.EaglePointCloud("test.ept")
dir_list = eagle.extract_dir()
print(dir_list)
输出:
["test_0000.bin", "test_0001.bin", "test_0002.bin", "test_0003.bin"]
该函数只能在已加载EaglePointCloud的情况下使用。在使用该函数前,需要确保.ept文件已经被成功加载。如果没有成功加载,则函数会抛出异常。