V2AI / Det3D

World's first general purpose 3D object detection codebse.
https://arxiv.org/abs/1908.09492
Apache License 2.0
1.49k stars 298 forks source link

Augmentation , Class group balancing and Anchors #7

Closed abhigoku10 closed 4 years ago

abhigoku10 commented 4 years ago

@poodarchu @a157801 thanks for the wonderful code base had few queries

  1. as mentioned in the paper which function performs the GT-AUG in the current code base 2.Is class group balancing feature performed in the current code base if so which function is performing
  2. are anchors generated separately for kitti and nuscenses or having the same anchor which performs the anchor generation
poodarchu commented 4 years ago
  1. db sampler is used to do GT-AUG.
  2. you can check nuscenes.py's init function.
  3. anchors of KITTI or nuScenes or Lyft use different configurations.
abhigoku10 commented 4 years ago

@poodarchu can i view the augmented data or save it to see how the augmentation is working

s-ryosky commented 4 years ago

Hi @abhigoku10 The augmented data will not be saved because the augmentation is processed online while training. But the cropped points in the GT boxes for GT-AUG will be saved in gt_database folder. Please make a code to visualize how the augmentation is working.

poodarchu commented 4 years ago

@poodarchu can i view the augmented data or save it to see how the augmentation is working

If you need to visualize data / feature map or anything else, you can use scripts in det3d/visualization