当前位置: 首页 > news >正文

【编程实践】关于S3DIS数据集的问题

从官方提供的网址下载数据集,里面并没有对应的对齐数据
s3dis数据集
在这里插入图片描述
导致测试运行出现问题,提示找不到对应的Area_X_alignmentAngle.txt

(dpl_ptv2) zhi2004@DESKTOP-7O2FIUE:~/Pointcept$ python pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py --splits Area_1 --dataset_root ${RAW_S3DIS_DIR} --output_root ${PROCESSED_S3DIS_DIR} --num_workers 1
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:26: UserWarning: Please install trimesh for parsing normalwarnings.warn("Please install trimesh for parsing normal")
Loading room information ...
Traceback (most recent call last):File "/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 233, in <module>main_process()File "/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 174, in main_processarea_info = np.loadtxt(File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/site-packages/numpy/lib/_npyio_impl.py", line 1397, in loadtxtarr = _read(fname, dtype=dtype, comment=comment, delimiter=delimiter,File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/site-packages/numpy/lib/_npyio_impl.py", line 1012, in _readfh = np.lib._datasource.open(fname, 'rt', encoding=encoding)File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/site-packages/numpy/lib/_datasource.py", line 192, in openreturn ds.open(path, mode, encoding=encoding, newline=newline)File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/site-packages/numpy/lib/_datasource.py", line 529, in openraise FileNotFoundError(f"{path} not found.")
FileNotFoundError: /home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_AlignmentMultiscale/Area_1/Area_1_alignmentAngle.txt not found.

在这里插入图片描述
有人在github中提到了这一问题:
在这里插入图片描述

解决办法:
在这里插入图片描述
其他解决办法:
修改Pointcept框架下对于s3dis数据集的预处理程序,跳过对齐代码。
修改后的代码,对数据集进行运行预处理,同样的代码,对于Area_1运行,提示存在部分数据缺失;对于Area_2能够完整运行并得到结果。

#运行数据集中的Area_1
(dpl_ptv2) zhi2004@DESKTOP-7O2FIUE:~/Pointcept$ python pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py --splits Area_1 --dataset_root ${RAW_S3DIS_DIR} --output_root ${PROCESSED_S3DIS_DIR} --num_workers 1
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:26: UserWarning: Please install trimesh for parsing normalwarnings.warn("Please install trimesh for parsing normal")
Loading room information ...
Processing scenes...
Parsing: Area_1/WC_1
Parsing: Area_1/office_29
Parsing: Area_1/hallway_2
Parsing: Area_1/pantry_1
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/beam_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/beam_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/bookcase_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/bookcase_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/ceiling_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_10.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_11.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_12.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_4.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_5.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_6.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_8.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/clutter_9.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/door_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/floor_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/table_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/wall_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/wall_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/wall_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/pantry_1/Annotations/wall_4.txt"obj = np.loadtxt(object_path)
Parsing: Area_1/conferenceRoom_1
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/beam_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/board_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/board_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/board_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/bookcase_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/ceiling_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_10.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_11.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_12.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_13.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_2.txt"obj = np.loadtxt(object_path)
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/process.py", line 246, in _process_workerr = call_item.fn(*call_item.args, **call_item.kwargs)File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/process.py", line 205, in _process_chunkreturn [fn(*args) for args in chunk]File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/process.py", line 205, in <listcomp>return [fn(*args) for args in chunk]File "/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 92, in parse_roomroom_coords = np.ascontiguousarray(np.vstack(room_coords))File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/site-packages/numpy/_core/shape_base.py", line 291, in vstackreturn _nx.concatenate(arrs, 0, dtype=dtype, casting=casting)
ValueError: need at least one array to concatenate
"""The above exception was the direct cause of the following exception:Traceback (most recent call last):File "/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 248, in <module>main_process()File "/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py", line 234, in main_process_ = list(File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/process.py", line 575, in _chain_from_iterable_of_listsfor element in iterable:File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/_base.py", line 621, in result_iteratoryield _result_or_cancel(fs.pop())File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/_base.py", line 319, in _result_or_cancelreturn fut.result(timeout)File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/_base.py", line 458, in resultreturn self.__get_result()File "/home/zhi2004/miniconda3/envs/dpl_ptv2/lib/python3.10/concurrent/futures/_base.py", line 403, in __get_resultraise self._exception
ValueError: need at least one array to concatenate
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_4.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_6.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_7.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_8.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/chair_9.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_4.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_5.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/clutter_6.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/door_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/table_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/wall_1.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/wall_2.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/wall_3.txt"obj = np.loadtxt(object_path)
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:70: UserWarning: loadtxt: input contained no data: "/home/zhi2004/Pointcept/data_test/Stanford3dDataset_v1.2_Aligned_Version/Area_1/conferenceRoom_1/Annotations/wall_4.txt"obj = np.loadtxt(object_path)
Parsing: Area_1/office_10
Parsing: Area_1/office_7
#运行数据集中Area_2
(dpl_ptv2) zhi2004@DESKTOP-7O2FIUE:~/Pointcept$ python pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py --splits Area_2 --dataset_root ${RAW_S3DIS_DIR} --output_root ${PROCESSED_S3DIS_DIR} --num_w
orkers 1
/home/zhi2004/Pointcept/pointcept/datasets/preprocessing/s3dis/preprocess_s3dis.py:26: UserWarning: Please install trimesh for parsing normalwarnings.warn("Please install trimesh for parsing normal")
Loading room information ...
Processing scenes...
Parsing: Area_2/WC_1
Parsing: Area_2/storage_4
Parsing: Area_2/hallway_2
Parsing: Area_2/conferenceRoom_1
Parsing: Area_2/office_10
Parsing: Area_2/office_7
Parsing: Area_2/office_11
Parsing: Area_2/office_8
Parsing: Area_2/office_3
Parsing: Area_2/storage_3
Parsing: Area_2/storage_6
Parsing: Area_2/storage_1
Parsing: Area_2/hallway_11
Parsing: Area_2/hallway_4
Parsing: Area_2/hallway_3
Parsing: Area_2/WC_2
Parsing: Area_2/storage_7
Parsing: Area_2/office_5
Parsing: Area_2/office_6
Parsing: Area_2/storage_2
Parsing: Area_2/office_9
Parsing: Area_2/hallway_9
Parsing: Area_2/office_13
Parsing: Area_2/office_4
Parsing: Area_2/office_12
Parsing: Area_2/hallway_1
Parsing: Area_2/storage_8
Parsing: Area_2/office_2
Parsing: Area_2/hallway_5
Parsing: Area_2/hallway_12
Parsing: Area_2/office_14
Parsing: Area_2/storage_9
Parsing: Area_2/hallway_8
Parsing: Area_2/hallway_6
Parsing: Area_2/auditorium_1
Parsing: Area_2/auditorium_2
Parsing: Area_2/hallway_7
Parsing: Area_2/storage_5
Parsing: Area_2/hallway_10
Parsing: Area_2/office_1
(dpl_ptv2) zhi2004@DESKTOP-7O2FIUE:~/Pointcept$
http://www.xdnf.cn/news/1318249.html

相关文章:

  • 官方正版在线安装office 365安装工具
  • react 错误边界
  • Linux系统分析 CPU 性能问题的工具汇总
  • STM32学习笔记13-通信协议I2CMPU6050
  • 海洋牧场助力可持续发展,保护海洋生态平衡
  • C语言学习笔记之文件操作
  • 基于Vue的个人博客网站的设计与实现/基于node.js的博客系统的设计与实现#express框架、vscode
  • 网络原理与编程实战:从 TCP/IP 到 HTTP/HTTPS
  • C++零拷贝网络编程实战:从理论到生产环境的性能优化之路
  • 01数据结构-插入排序
  • 如何让AI视频模型(如Veo)开口说中文?一个顶级提示词的深度拆解
  • RabbitMQ入门:生产者和消费者示例
  • 44.【.NET8 实战--孢子记账--从单体到微服务--转向微服务】--扩展功能--集成网关--网关集成认证(三)
  • 一起Oracle 19c bug 导致的业务系统超时问题分析
  • 锂电池SOH预测 | Matlab基于KPCA-PLO-Transformer-LSTM的的锂电池健康状态估计(锂电池SOH预测),附锂电池最新文章汇集
  • Linux中聚合链路与软件网桥配置指南
  • java理解
  • 使用 Python 的 `cProfile` 分析函数执行时间
  • 如何做HTTP优化
  • 计算机毕设选题推荐-基于大数据的全面皮肤病症状数据可视化分析系统【Hadoop、spark、python】
  • 【LLM】文献阅读-ISOLATE GPT:基于大语言模型的执行隔离架构
  • 自然语言处理NLP---预训练模型与 BERT
  • rt-thread audio框架移植stm32 adc+dac,对接cherryusb uac,进行录音和播放
  • 软件需求规格说明书
  • 评测系统构建
  • 43.安卓逆向2-补环境-使用unidbg(使用Smali语法调用方法和使用方法地址调用方法)
  • 问津集 #5:Crystal: A Unified Cache Storage System for Analytical Databases
  • LangChain 多任务应用开发
  • 向量数据库基础和实践 (Faiss)
  • PyCharm与前沿技术集成指南:AI开发、云原生与大数据实战