├── .gitignore ├── README.md ├── __init__.py ├── configs ├── faster_rcnn_resnet101_dota.config └── faster_rcnn_resnet152_dota.config ├── convert_image_types.py ├── convert_to_darknet.py ├── convert_to_tfrecord.py ├── data_utils.py └── datafeeder.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/faster_rcnn_resnet101_dota.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/configs/faster_rcnn_resnet101_dota.config -------------------------------------------------------------------------------- /configs/faster_rcnn_resnet152_dota.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/configs/faster_rcnn_resnet152_dota.config -------------------------------------------------------------------------------- /convert_image_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/convert_image_types.py -------------------------------------------------------------------------------- /convert_to_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/convert_to_darknet.py -------------------------------------------------------------------------------- /convert_to_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/convert_to_tfrecord.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/data_utils.py -------------------------------------------------------------------------------- /datafeeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryan-bisonai/aerial-object-detector/HEAD/datafeeder.py --------------------------------------------------------------------------------