Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pcdet/datasets/custom/custom_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ def get_label(self, idx):
def get_lidar(self, idx):
lidar_file = self.root_path / 'points' / ('%s.npy' % idx)
assert lidar_file.exists()
point_features = np.load(lidar_file)
point_features = np.load(lidar_file).reshape(-1,4)
# just like kitti load
# lidar_file = self.root_path / 'points' / ('%s.bin' % idx)
# assert lidar_file.exists()
# point_features = np.fromfile(lidar_file,dtype=np.float32).reshape(-1,4)
return point_features

def set_split(self, split):
Expand Down