├── .gitignore ├── README.md ├── box_np_ops.py ├── docs └── methods.jpg ├── geometry.py └── part_aware_augmentation.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky77764/pa-aug.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /box_np_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky77764/pa-aug.pytorch/HEAD/box_np_ops.py -------------------------------------------------------------------------------- /docs/methods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky77764/pa-aug.pytorch/HEAD/docs/methods.jpg -------------------------------------------------------------------------------- /geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky77764/pa-aug.pytorch/HEAD/geometry.py -------------------------------------------------------------------------------- /part_aware_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky77764/pa-aug.pytorch/HEAD/part_aware_augmentation.py --------------------------------------------------------------------------------