You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the parameter in official config “waymo_tracking_dataset.yaml”
NUM_POINT_FEATURES: 5
used_feature_list: ['x', 'y', 'z', 'intensity', 'elongation'],
src_feature_list: ['x', 'y', 'z', 'intensity', 'elongation'],
the points features dim(1) is 5 in voxel_output = self._voxel_generator.point_to_voxel(tv.from_numpy(points)), which is 4 in kitti.
however it runs
voxel_output = self._voxel_generator.point_to_voxel(tv.from_numpy(points))
RuntimeError: /io/build/temp.linux-x86_64-cpython-39/spconv/build/core_cc/src/csrc/sparse/all/ops_cpu3d/Point2VoxelCPU/Point2VoxelCPU_point_to_voxel_static.cc(22)
num_features == voxels.dim(2) assert faild. your points num features doesn't equal to voxel.
which does not appear in kitti.
It should be ok whether the point feature dim(1) is 4 or 5.
So is this because some parameters in config should be changed or others and what should I do.
Thanks for your answer.
The text was updated successfully, but these errors were encountered:
As the parameter in official config “waymo_tracking_dataset.yaml”
NUM_POINT_FEATURES: 5
used_feature_list: ['x', 'y', 'z', 'intensity', 'elongation'],
src_feature_list: ['x', 'y', 'z', 'intensity', 'elongation'],
the points features dim(1) is 5 in voxel_output = self._voxel_generator.point_to_voxel(tv.from_numpy(points)), which is 4 in kitti.
however it runs
voxel_output = self._voxel_generator.point_to_voxel(tv.from_numpy(points))
RuntimeError: /io/build/temp.linux-x86_64-cpython-39/spconv/build/core_cc/src/csrc/sparse/all/ops_cpu3d/Point2VoxelCPU/Point2VoxelCPU_point_to_voxel_static.cc(22)
num_features == voxels.dim(2) assert faild. your points num features doesn't equal to voxel.
which does not appear in kitti.
It should be ok whether the point feature dim(1) is 4 or 5.
So is this because some parameters in config should be changed or others and what should I do.
Thanks for your answer.
The text was updated successfully, but these errors were encountered: