-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
Hi, OpenPCDet Team,
I notices that, the function transform_annotations_to_kitti_format
inside the official code pcdet/datasets/kitti/kitti_utils.py
,
it sets the bbox
attribute of both gt
and dt
as [0, 0, 50, 50]
by force
ref
anno['bbox'] = np.zeros((len(anno['name']), 4))
anno['bbox'][:, 2:4] = 50 # [0, 0, 50, 50]
and
kitti_utils.transform_annotations_to_kitti_format(eval_det_annos, map_name_to_kitti=map_name_to_kitti)
kitti_utils.transform_annotations_to_kitti_format(
eval_gt_annos, map_name_to_kitti=map_name_to_kitti,
info_with_fakelidar=self.dataset_cfg.get('INFO_WITH_FAKELIDAR', False)
)
I can not find any issue reported this problem.
And when I debug at the position_1, the position_2 , and position_3, where calculates the difficulty
and tp, fp, fn, similarity, thresholds
, I found that all the height
which calculated from bbox
attribute are all 50
s, or bbox
related variables are all [0, 0, 50, 50]
.
Can the team member or some one familiar with these can give some explanation ?
Metadata
Metadata
Assignees
Labels
No labels