Skip to content

Commit

Permalink
[Fix]: create_gt_database of nuscenes
Browse files Browse the repository at this point in the history
* Fix the bug on the commit open-mmlab#211 for the create_gt_database in nuscenes
  • Loading branch information
meng-zha committed Dec 8, 2020
1 parent 94f64e3 commit ca2f233
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/data_converter/create_gt_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,13 @@ def create_groundtruth_database(dataset_class_name,
dataset_cfg.update(
use_valid_flag=True,
pipeline=[
dict(type='LoadPointsFromFile', load_dim=5, use_dim=5),
dict(
type='LoadPointsFromMultiSweeps',
type='LoadPointsFromFile',
coord_type='LIDAR',
load_dim=5,
use_dim=5),
dict(
type='LoadPointsFromMultiSweeps',
sweeps_num=10,
use_dim=[0, 1, 2, 3, 4],
pad_empty_sweeps=True,
Expand Down

0 comments on commit ca2f233

Please sign in to comment.