├── .idea ├── .gitignore ├── DRENet.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── DegradeGenerate.py ├── LICENSE ├── NetworkStructure.png ├── README.md ├── data ├── hyp.finetune.yaml ├── hyp.scratch.yaml └── ship.yaml ├── detect.py ├── hubconf.py ├── models ├── Ablation_Only_CRMA.yaml ├── Ablation_Only_CRMA_Remove_PAN.yaml ├── Ablation_Only_CRMA_and_Scale.yaml ├── Ablation_Only_Detector.yaml ├── Ablation_Only_Enhancer.yaml ├── Ablation_Only_Scale.yaml ├── DRENet.yaml ├── __init__.py ├── common.py ├── experimental.py ├── export.py ├── yolo.py └── yolov5s.yaml ├── requirements.txt ├── test.py ├── train.py └── utils ├── __init__.py ├── activations.py ├── autoanchor.py ├── datasets.py ├── general.py ├── google_utils.py ├── loss.py ├── metrics.py ├── plots.py └── torch_utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/DRENet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/DRENet.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DegradeGenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/DegradeGenerate.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/LICENSE -------------------------------------------------------------------------------- /NetworkStructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/NetworkStructure.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/README.md -------------------------------------------------------------------------------- /data/hyp.finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/data/hyp.finetune.yaml -------------------------------------------------------------------------------- /data/hyp.scratch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/data/hyp.scratch.yaml -------------------------------------------------------------------------------- /data/ship.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/data/ship.yaml -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/detect.py -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/hubconf.py -------------------------------------------------------------------------------- /models/Ablation_Only_CRMA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_CRMA.yaml -------------------------------------------------------------------------------- /models/Ablation_Only_CRMA_Remove_PAN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_CRMA_Remove_PAN.yaml -------------------------------------------------------------------------------- /models/Ablation_Only_CRMA_and_Scale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_CRMA_and_Scale.yaml -------------------------------------------------------------------------------- /models/Ablation_Only_Detector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_Detector.yaml -------------------------------------------------------------------------------- /models/Ablation_Only_Enhancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_Enhancer.yaml -------------------------------------------------------------------------------- /models/Ablation_Only_Scale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/Ablation_Only_Scale.yaml -------------------------------------------------------------------------------- /models/DRENet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/DRENet.yaml -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/export.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/yolo.py -------------------------------------------------------------------------------- /models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/models/yolov5s.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/google_utils.py -------------------------------------------------------------------------------- /utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/loss.py -------------------------------------------------------------------------------- /utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/metrics.py -------------------------------------------------------------------------------- /utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/plots.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindVChen/DRENet/HEAD/utils/torch_utils.py --------------------------------------------------------------------------------