Skip to content

Commit

Permalink
bugfixed: set empty gt_boxes_lidar to (0, 9) instead of (0, 7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sshaoshuai committed Aug 18, 2022
1 parent 4996eb4 commit 6a1f253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcdet/datasets/waymo/waymo_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def generate_labels(frame, pose):
axis=1
)
else:
gt_boxes_lidar = np.zeros((0, 7))
gt_boxes_lidar = np.zeros((0, 9))
annotations['gt_boxes_lidar'] = gt_boxes_lidar
return annotations

Expand Down

0 comments on commit 6a1f253

Please sign in to comment.