├── .DS_Store ├── .gitignore ├── LICENSE ├── MODEL_ZOO.md ├── README.md ├── data ├── __init__.py ├── io │ ├── DOTA │ │ └── data_crop.py │ ├── FDDB │ │ ├── fddb.py │ │ └── txt2xml.py │ ├── HRSC2016 │ │ ├── __init__.py │ │ └── make_test_xml.py │ ├── UCAS-AOD │ │ ├── split_data.py │ │ └── txt2xml.py │ ├── __init__.py │ ├── convert_data_to_tfrecord.py │ ├── convert_data_to_tfrecord_HRSC2016.py │ ├── image_preprocess.py │ ├── image_preprocess_multi_gpu.py │ ├── read_tfrecord.py │ └── read_tfrecord_multi_gpu.py └── pretrained_weights │ └── README.md ├── demo1.png ├── demo2.png ├── example.png ├── help_utils ├── __init__.py └── tools.py ├── images.png ├── iou_smooth_l1_loss.png ├── libs ├── __init__.py ├── box_utils │ ├── __init__.py │ ├── anchor_utils.py │ ├── bbox_transform.py │ ├── boxes_utils.py │ ├── coordinate_convert.py │ ├── cython_utils │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── bbox.c │ │ ├── bbox.pyx │ │ ├── nms.c │ │ ├── nms.pyx │ │ └── setup.py │ ├── draw_box_in_img.py │ ├── generate_anchors.py │ ├── generate_rotate_anchors.py │ ├── iou.py │ ├── iou_cpu.cpp │ ├── iou_cpu.pyx │ ├── iou_rotate.py │ ├── nms_rotate.py │ ├── rbbox_overlaps.cpp │ ├── rbbox_overlaps.hpp │ ├── rbbox_overlaps.pyx │ ├── rbbox_overlaps_kernel.cu │ ├── rotate_anchors.jpg │ ├── rotate_gpu_nms.hpp │ ├── rotate_polygon_nms.cpp │ ├── rotate_polygon_nms.hpp │ ├── rotate_polygon_nms.pyx │ ├── rotate_polygon_nms_kernel.cu │ ├── setup.py │ ├── show_box_in_tensor.py │ └── tf_ops.py ├── configs │ ├── DOTA1.0 │ │ ├── __init__.py │ │ ├── cfgs_res101_dota_v9.py │ │ ├── cfgs_res152_dota_v12.py │ │ ├── cfgs_res50_dota_v1.py │ │ ├── cfgs_res50_dota_v10.py │ │ ├── cfgs_res50_dota_v13.py │ │ ├── cfgs_res50_dota_v14.py │ │ ├── cfgs_res50_dota_v15.py │ │ ├── cfgs_res50_dota_v16.py │ │ ├── cfgs_res50_dota_v17.py │ │ ├── cfgs_res50_dota_v2.py │ │ ├── cfgs_res50_dota_v3.py │ │ ├── cfgs_res50_dota_v4.py │ │ ├── cfgs_res50_dota_v5.py │ │ ├── cfgs_res50_dota_v6.py │ │ ├── cfgs_res50_dota_v7.py │ │ └── cfgs_res50_dota_v8.py │ ├── __init__.py │ └── cfgs.py ├── detection_oprations │ ├── __init__.py │ ├── anchor_target_layer_without_boxweight.py │ ├── proposal_opr.py │ └── proposal_opr_.py ├── label_name_dict │ ├── __init__.py │ ├── coco_dict.py │ └── label_dict.py ├── losses │ ├── __init__.py │ └── losses.py ├── networks │ ├── __init__.py │ ├── build_whole_network.py │ ├── mobilenet │ │ ├── README.md │ │ ├── __init__.py │ │ ├── conv_blocks.py │ │ ├── mobilenet.py │ │ ├── mobilenet_v2.py │ │ └── mobilenet_v2_test.py │ ├── mobilenet_v2.py │ ├── opts.py │ ├── resnet.py │ ├── resnet_gluoncv.py │ ├── slim_nets │ │ ├── __init__.py │ │ ├── alexnet.py │ │ ├── alexnet_test.py │ │ ├── cifarnet.py │ │ ├── inception.py │ │ ├── inception_resnet_v2.py │ │ ├── inception_resnet_v2_test.py │ │ ├── inception_utils.py │ │ ├── inception_v1.py │ │ ├── inception_v1_test.py │ │ ├── inception_v2.py │ │ ├── inception_v2_test.py │ │ ├── inception_v3.py │ │ ├── inception_v3_test.py │ │ ├── inception_v4.py │ │ ├── inception_v4_test.py │ │ ├── lenet.py │ │ ├── mobilenet_v1.md │ │ ├── mobilenet_v1.png │ │ ├── mobilenet_v1.py │ │ ├── mobilenet_v1_test.py │ │ ├── nets_factory.py │ │ ├── nets_factory_test.py │ │ ├── overfeat.py │ │ ├── overfeat_test.py │ │ ├── resnet_utils.py │ │ ├── resnet_v1.py │ │ ├── resnet_v1_test.py │ │ ├── resnet_v2.py │ │ ├── resnet_v2_test.py │ │ ├── vgg.py │ │ └── vgg_test.py │ ├── xception.bak.py │ └── xception.py ├── setup.py └── val_libs │ ├── __init__.py │ ├── voc_eval.py │ └── voc_eval_r.py ├── output └── trained_weights │ └── README.md ├── scalars.png └── tools ├── __init__.py ├── inference.py ├── multi_gpu_train.py ├── test_dota.py └── test_dota ├── RetinaNet_DOTA_1x_20190527 └── dota_img_vis │ ├── P0006.png │ ├── P0009.png │ ├── P0014.png │ ├── P0015.png │ └── P0016.png ├── RetinaNet_DOTA_1x_20190603 └── dota_img_vis │ ├── P0006.png │ ├── P0009.png │ ├── P0014.png │ ├── P0015.png │ └── P0016.png └── RetinaNet_DOTA_1x_20190606 └── dota_img_vis ├── P0006.png ├── P0009.png ├── P0014.png ├── P0015.png └── P0016.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/MODEL_ZOO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/io/DOTA/data_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/DOTA/data_crop.py -------------------------------------------------------------------------------- /data/io/FDDB/fddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/FDDB/fddb.py -------------------------------------------------------------------------------- /data/io/FDDB/txt2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/FDDB/txt2xml.py -------------------------------------------------------------------------------- /data/io/HRSC2016/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/io/HRSC2016/make_test_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/HRSC2016/make_test_xml.py -------------------------------------------------------------------------------- /data/io/UCAS-AOD/split_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/UCAS-AOD/split_data.py -------------------------------------------------------------------------------- /data/io/UCAS-AOD/txt2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/UCAS-AOD/txt2xml.py -------------------------------------------------------------------------------- /data/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/io/convert_data_to_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/convert_data_to_tfrecord.py -------------------------------------------------------------------------------- /data/io/convert_data_to_tfrecord_HRSC2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/convert_data_to_tfrecord_HRSC2016.py -------------------------------------------------------------------------------- /data/io/image_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/image_preprocess.py -------------------------------------------------------------------------------- /data/io/image_preprocess_multi_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/image_preprocess_multi_gpu.py -------------------------------------------------------------------------------- /data/io/read_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/read_tfrecord.py -------------------------------------------------------------------------------- /data/io/read_tfrecord_multi_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/io/read_tfrecord_multi_gpu.py -------------------------------------------------------------------------------- /data/pretrained_weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/data/pretrained_weights/README.md -------------------------------------------------------------------------------- /demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/demo1.png -------------------------------------------------------------------------------- /demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/demo2.png -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/example.png -------------------------------------------------------------------------------- /help_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help_utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/help_utils/tools.py -------------------------------------------------------------------------------- /images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/images.png -------------------------------------------------------------------------------- /iou_smooth_l1_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/iou_smooth_l1_loss.png -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/box_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/box_utils/anchor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/anchor_utils.py -------------------------------------------------------------------------------- /libs/box_utils/bbox_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/bbox_transform.py -------------------------------------------------------------------------------- /libs/box_utils/boxes_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/boxes_utils.py -------------------------------------------------------------------------------- /libs/box_utils/coordinate_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/coordinate_convert.py -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/Makefile -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/bbox.c -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/bbox.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/bbox.pyx -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/nms.c -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/nms.pyx -------------------------------------------------------------------------------- /libs/box_utils/cython_utils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/cython_utils/setup.py -------------------------------------------------------------------------------- /libs/box_utils/draw_box_in_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/draw_box_in_img.py -------------------------------------------------------------------------------- /libs/box_utils/generate_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/generate_anchors.py -------------------------------------------------------------------------------- /libs/box_utils/generate_rotate_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/generate_rotate_anchors.py -------------------------------------------------------------------------------- /libs/box_utils/iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/iou.py -------------------------------------------------------------------------------- /libs/box_utils/iou_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/iou_cpu.cpp -------------------------------------------------------------------------------- /libs/box_utils/iou_cpu.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/iou_cpu.pyx -------------------------------------------------------------------------------- /libs/box_utils/iou_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/iou_rotate.py -------------------------------------------------------------------------------- /libs/box_utils/nms_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/nms_rotate.py -------------------------------------------------------------------------------- /libs/box_utils/rbbox_overlaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rbbox_overlaps.cpp -------------------------------------------------------------------------------- /libs/box_utils/rbbox_overlaps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rbbox_overlaps.hpp -------------------------------------------------------------------------------- /libs/box_utils/rbbox_overlaps.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rbbox_overlaps.pyx -------------------------------------------------------------------------------- /libs/box_utils/rbbox_overlaps_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rbbox_overlaps_kernel.cu -------------------------------------------------------------------------------- /libs/box_utils/rotate_anchors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_anchors.jpg -------------------------------------------------------------------------------- /libs/box_utils/rotate_gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_gpu_nms.hpp -------------------------------------------------------------------------------- /libs/box_utils/rotate_polygon_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_polygon_nms.cpp -------------------------------------------------------------------------------- /libs/box_utils/rotate_polygon_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_polygon_nms.hpp -------------------------------------------------------------------------------- /libs/box_utils/rotate_polygon_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_polygon_nms.pyx -------------------------------------------------------------------------------- /libs/box_utils/rotate_polygon_nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/rotate_polygon_nms_kernel.cu -------------------------------------------------------------------------------- /libs/box_utils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/setup.py -------------------------------------------------------------------------------- /libs/box_utils/show_box_in_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/show_box_in_tensor.py -------------------------------------------------------------------------------- /libs/box_utils/tf_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/box_utils/tf_ops.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res101_dota_v9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res101_dota_v9.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res152_dota_v12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res152_dota_v12.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v1.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v10.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v13.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v14.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v15.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v16.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v17.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v2.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v3.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v4.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v5.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v6.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v7.py -------------------------------------------------------------------------------- /libs/configs/DOTA1.0/cfgs_res50_dota_v8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/DOTA1.0/cfgs_res50_dota_v8.py -------------------------------------------------------------------------------- /libs/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/configs/cfgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/configs/cfgs.py -------------------------------------------------------------------------------- /libs/detection_oprations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/detection_oprations/anchor_target_layer_without_boxweight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/detection_oprations/anchor_target_layer_without_boxweight.py -------------------------------------------------------------------------------- /libs/detection_oprations/proposal_opr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/detection_oprations/proposal_opr.py -------------------------------------------------------------------------------- /libs/detection_oprations/proposal_opr_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/detection_oprations/proposal_opr_.py -------------------------------------------------------------------------------- /libs/label_name_dict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/label_name_dict/coco_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/label_name_dict/coco_dict.py -------------------------------------------------------------------------------- /libs/label_name_dict/label_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/label_name_dict/label_dict.py -------------------------------------------------------------------------------- /libs/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/losses/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/losses/losses.py -------------------------------------------------------------------------------- /libs/networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/networks/build_whole_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/build_whole_network.py -------------------------------------------------------------------------------- /libs/networks/mobilenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet/README.md -------------------------------------------------------------------------------- /libs/networks/mobilenet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/networks/mobilenet/conv_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet/conv_blocks.py -------------------------------------------------------------------------------- /libs/networks/mobilenet/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet/mobilenet.py -------------------------------------------------------------------------------- /libs/networks/mobilenet/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet/mobilenet_v2.py -------------------------------------------------------------------------------- /libs/networks/mobilenet/mobilenet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet/mobilenet_v2_test.py -------------------------------------------------------------------------------- /libs/networks/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/mobilenet_v2.py -------------------------------------------------------------------------------- /libs/networks/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/opts.py -------------------------------------------------------------------------------- /libs/networks/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/resnet.py -------------------------------------------------------------------------------- /libs/networks/resnet_gluoncv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/resnet_gluoncv.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/networks/slim_nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/alexnet.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/alexnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/alexnet_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/cifarnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/cifarnet.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_resnet_v2.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_resnet_v2_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_utils.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v1.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v1_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v2.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v2_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v3.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v3_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v4.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/inception_v4_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/inception_v4_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/lenet.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/mobilenet_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/mobilenet_v1.md -------------------------------------------------------------------------------- /libs/networks/slim_nets/mobilenet_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/mobilenet_v1.png -------------------------------------------------------------------------------- /libs/networks/slim_nets/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/mobilenet_v1.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/mobilenet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/mobilenet_v1_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/nets_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/nets_factory.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/nets_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/nets_factory_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/overfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/overfeat.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/overfeat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/overfeat_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/resnet_utils.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/resnet_v1.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/resnet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/resnet_v1_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/resnet_v2.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/resnet_v2_test.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/vgg.py -------------------------------------------------------------------------------- /libs/networks/slim_nets/vgg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/slim_nets/vgg_test.py -------------------------------------------------------------------------------- /libs/networks/xception.bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/xception.bak.py -------------------------------------------------------------------------------- /libs/networks/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/networks/xception.py -------------------------------------------------------------------------------- /libs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/setup.py -------------------------------------------------------------------------------- /libs/val_libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/val_libs/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/val_libs/voc_eval.py -------------------------------------------------------------------------------- /libs/val_libs/voc_eval_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/libs/val_libs/voc_eval_r.py -------------------------------------------------------------------------------- /output/trained_weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/output/trained_weights/README.md -------------------------------------------------------------------------------- /scalars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/scalars.png -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/inference.py -------------------------------------------------------------------------------- /tools/multi_gpu_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/multi_gpu_train.py -------------------------------------------------------------------------------- /tools/test_dota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota.py -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0006.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0009.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0014.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0015.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190527/dota_img_vis/P0016.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0006.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0009.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0014.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0015.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190603/dota_img_vis/P0016.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0006.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0009.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0014.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0015.png -------------------------------------------------------------------------------- /tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DetectionTeamUCAS/RetinaNet_Tensorflow_Rotation/HEAD/tools/test_dota/RetinaNet_DOTA_1x_20190606/dota_img_vis/P0016.png --------------------------------------------------------------------------------