├── .gitignore ├── Figs ├── City.gif ├── Exp_Table.png ├── Exp_Vis.PNG ├── Factory.gif ├── Intersection.gif ├── Intro.png ├── Street.gif ├── Terminal-1.gif └── Terminal-2.gif ├── LICENSE ├── README.md ├── attacking.py ├── dataset.py ├── det_configs ├── _base_ │ ├── default_runtime.py │ ├── dotav1.py │ └── schedule_1x.py ├── oriented_rcnn_r50_fpn_1x_dota_le90.py ├── oriented_reppoints_r50_fpn_1x_dota_le135.py ├── roi_trans_r50_fpn_1x_dota_le90.py ├── rotated_retinanet_obb_r50_fpn_1x_dota_le90.py ├── ss_test.json └── ss_trainval.json ├── evaluate.bat ├── labels ├── city.txt ├── intersection.txt ├── street1.txt ├── tank.txt ├── terminal1.txt └── terminal2.txt ├── main.py ├── model ├── __init__.py ├── backbone.py ├── base │ ├── __init__.py │ ├── basic_blocks.py │ ├── conv_autoencoder.py │ ├── ih_model.py │ └── ops.py ├── hrnetv2 │ ├── __init__.py │ ├── hrnet_ocr.py │ ├── modifiers.py │ ├── ocr.py │ └── resnetv1b.py └── lut_transformation_net.py ├── pretrained └── 30values.txt ├── requirements.txt ├── train.bat ├── training.py └── utils ├── __init__.py ├── adversarial_attack_pos.py ├── build_loss.py ├── img_split.py ├── misc.py └── transforms_rbbox.py /.gitignore: -------------------------------------------------------------------------------- 1 | wandb/ 2 | logs/ 3 | .idea/ 4 | pretrained/*.pth 5 | syn_dataset/ 6 | LUTs/ -------------------------------------------------------------------------------- /Figs/City.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/City.gif -------------------------------------------------------------------------------- /Figs/Exp_Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Exp_Table.png -------------------------------------------------------------------------------- /Figs/Exp_Vis.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Exp_Vis.PNG -------------------------------------------------------------------------------- /Figs/Factory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Factory.gif -------------------------------------------------------------------------------- /Figs/Intersection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Intersection.gif -------------------------------------------------------------------------------- /Figs/Intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Intro.png -------------------------------------------------------------------------------- /Figs/Street.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Street.gif -------------------------------------------------------------------------------- /Figs/Terminal-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Terminal-1.gif -------------------------------------------------------------------------------- /Figs/Terminal-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/Figs/Terminal-2.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/README.md -------------------------------------------------------------------------------- /attacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/attacking.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/dataset.py -------------------------------------------------------------------------------- /det_configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /det_configs/_base_/dotav1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/_base_/dotav1.py -------------------------------------------------------------------------------- /det_configs/_base_/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/_base_/schedule_1x.py -------------------------------------------------------------------------------- /det_configs/oriented_rcnn_r50_fpn_1x_dota_le90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/oriented_rcnn_r50_fpn_1x_dota_le90.py -------------------------------------------------------------------------------- /det_configs/oriented_reppoints_r50_fpn_1x_dota_le135.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/oriented_reppoints_r50_fpn_1x_dota_le135.py -------------------------------------------------------------------------------- /det_configs/roi_trans_r50_fpn_1x_dota_le90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/roi_trans_r50_fpn_1x_dota_le90.py -------------------------------------------------------------------------------- /det_configs/rotated_retinanet_obb_r50_fpn_1x_dota_le90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/rotated_retinanet_obb_r50_fpn_1x_dota_le90.py -------------------------------------------------------------------------------- /det_configs/ss_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/ss_test.json -------------------------------------------------------------------------------- /det_configs/ss_trainval.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/det_configs/ss_trainval.json -------------------------------------------------------------------------------- /evaluate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/evaluate.bat -------------------------------------------------------------------------------- /labels/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/city.txt -------------------------------------------------------------------------------- /labels/intersection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/intersection.txt -------------------------------------------------------------------------------- /labels/street1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/street1.txt -------------------------------------------------------------------------------- /labels/tank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/tank.txt -------------------------------------------------------------------------------- /labels/terminal1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/terminal1.txt -------------------------------------------------------------------------------- /labels/terminal2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/labels/terminal2.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/backbone.py -------------------------------------------------------------------------------- /model/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/base/basic_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/base/basic_blocks.py -------------------------------------------------------------------------------- /model/base/conv_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/base/conv_autoencoder.py -------------------------------------------------------------------------------- /model/base/ih_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/base/ih_model.py -------------------------------------------------------------------------------- /model/base/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/base/ops.py -------------------------------------------------------------------------------- /model/hrnetv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/hrnetv2/hrnet_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/hrnetv2/hrnet_ocr.py -------------------------------------------------------------------------------- /model/hrnetv2/modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/hrnetv2/modifiers.py -------------------------------------------------------------------------------- /model/hrnetv2/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/hrnetv2/ocr.py -------------------------------------------------------------------------------- /model/hrnetv2/resnetv1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/hrnetv2/resnetv1b.py -------------------------------------------------------------------------------- /model/lut_transformation_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/model/lut_transformation_net.py -------------------------------------------------------------------------------- /pretrained/30values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/pretrained/30values.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/train.bat -------------------------------------------------------------------------------- /training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/training.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/adversarial_attack_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/utils/adversarial_attack_pos.py -------------------------------------------------------------------------------- /utils/build_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/utils/build_loss.py -------------------------------------------------------------------------------- /utils/img_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/utils/img_split.py -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/utils/misc.py -------------------------------------------------------------------------------- /utils/transforms_rbbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/VCO-AP/HEAD/utils/transforms_rbbox.py --------------------------------------------------------------------------------