├── EATDer ├── CBAMnet.py ├── EATDernet.py ├── README.md ├── datamaker.py ├── img_read.py ├── imgetest.py ├── network.png ├── requirements.txt └── train.py ├── README.md └── WNet ├── DCNv2 ├── LICENSE ├── README.md ├── __init__.py ├── dcn_v2.py ├── make.sh ├── setup.py ├── src │ ├── cpu │ │ ├── dcn_v2_cpu.cpp │ │ ├── dcn_v2_im2col_cpu.cpp │ │ ├── dcn_v2_im2col_cpu.h │ │ ├── dcn_v2_psroi_pooling_cpu.cpp │ │ └── vision.h │ ├── cuda │ │ ├── dcn_v2_cuda.cu │ │ ├── dcn_v2_im2col_cuda.cu │ │ ├── dcn_v2_im2col_cuda.h │ │ ├── dcn_v2_psroi_pooling_cuda.cu │ │ └── vision.h │ ├── dcn_v2.h │ └── vision.cpp └── test │ ├── __init__.py │ ├── test.py │ ├── testcpu.py │ └── testcuda.py ├── README.md ├── data ├── __init__.py ├── cd_dataset.py ├── data_loader.py ├── image_folder.py └── preprocessing.py ├── model ├── __init__.py ├── cd_model.py ├── dat.py ├── dat_blocks.py ├── loss.py ├── networks.py └── resnet.py ├── option ├── __init__.py ├── base_options.py ├── test_options.py └── train_options.py ├── test.py ├── train.py └── util ├── __init__.py ├── cam_utils.py ├── mark_prediction.py ├── metric_tool.py ├── util.py └── visualizer.py /EATDer/CBAMnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/CBAMnet.py -------------------------------------------------------------------------------- /EATDer/EATDernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/EATDernet.py -------------------------------------------------------------------------------- /EATDer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/README.md -------------------------------------------------------------------------------- /EATDer/datamaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/datamaker.py -------------------------------------------------------------------------------- /EATDer/img_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/img_read.py -------------------------------------------------------------------------------- /EATDer/imgetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/imgetest.py -------------------------------------------------------------------------------- /EATDer/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/network.png -------------------------------------------------------------------------------- /EATDer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/requirements.txt -------------------------------------------------------------------------------- /EATDer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/EATDer/train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Remote-Sensing-Image-Change-Detection -------------------------------------------------------------------------------- /WNet/DCNv2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/LICENSE -------------------------------------------------------------------------------- /WNet/DCNv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/README.md -------------------------------------------------------------------------------- /WNet/DCNv2/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WNet/DCNv2/dcn_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/dcn_v2.py -------------------------------------------------------------------------------- /WNet/DCNv2/make.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | python setup.py build develop 3 | -------------------------------------------------------------------------------- /WNet/DCNv2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/setup.py -------------------------------------------------------------------------------- /WNet/DCNv2/src/cpu/dcn_v2_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cpu/dcn_v2_cpu.cpp -------------------------------------------------------------------------------- /WNet/DCNv2/src/cpu/dcn_v2_im2col_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cpu/dcn_v2_im2col_cpu.cpp -------------------------------------------------------------------------------- /WNet/DCNv2/src/cpu/dcn_v2_im2col_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cpu/dcn_v2_im2col_cpu.h -------------------------------------------------------------------------------- /WNet/DCNv2/src/cpu/dcn_v2_psroi_pooling_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cpu/dcn_v2_psroi_pooling_cpu.cpp -------------------------------------------------------------------------------- /WNet/DCNv2/src/cpu/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cpu/vision.h -------------------------------------------------------------------------------- /WNet/DCNv2/src/cuda/dcn_v2_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cuda/dcn_v2_cuda.cu -------------------------------------------------------------------------------- /WNet/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu -------------------------------------------------------------------------------- /WNet/DCNv2/src/cuda/dcn_v2_im2col_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cuda/dcn_v2_im2col_cuda.h -------------------------------------------------------------------------------- /WNet/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu -------------------------------------------------------------------------------- /WNet/DCNv2/src/cuda/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/cuda/vision.h -------------------------------------------------------------------------------- /WNet/DCNv2/src/dcn_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/dcn_v2.h -------------------------------------------------------------------------------- /WNet/DCNv2/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/src/vision.cpp -------------------------------------------------------------------------------- /WNet/DCNv2/test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WNet/DCNv2/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/test/test.py -------------------------------------------------------------------------------- /WNet/DCNv2/test/testcpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/test/testcpu.py -------------------------------------------------------------------------------- /WNet/DCNv2/test/testcuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/DCNv2/test/testcuda.py -------------------------------------------------------------------------------- /WNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/README.md -------------------------------------------------------------------------------- /WNet/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/data/__init__.py -------------------------------------------------------------------------------- /WNet/data/cd_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/data/cd_dataset.py -------------------------------------------------------------------------------- /WNet/data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/data/data_loader.py -------------------------------------------------------------------------------- /WNet/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/data/image_folder.py -------------------------------------------------------------------------------- /WNet/data/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/data/preprocessing.py -------------------------------------------------------------------------------- /WNet/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/__init__.py -------------------------------------------------------------------------------- /WNet/model/cd_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/cd_model.py -------------------------------------------------------------------------------- /WNet/model/dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/dat.py -------------------------------------------------------------------------------- /WNet/model/dat_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/dat_blocks.py -------------------------------------------------------------------------------- /WNet/model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/loss.py -------------------------------------------------------------------------------- /WNet/model/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/networks.py -------------------------------------------------------------------------------- /WNet/model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/model/resnet.py -------------------------------------------------------------------------------- /WNet/option/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WNet/option/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/option/base_options.py -------------------------------------------------------------------------------- /WNet/option/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/option/test_options.py -------------------------------------------------------------------------------- /WNet/option/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/option/train_options.py -------------------------------------------------------------------------------- /WNet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/test.py -------------------------------------------------------------------------------- /WNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/train.py -------------------------------------------------------------------------------- /WNet/util/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WNet/util/cam_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/util/cam_utils.py -------------------------------------------------------------------------------- /WNet/util/mark_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/util/mark_prediction.py -------------------------------------------------------------------------------- /WNet/util/metric_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/util/metric_tool.py -------------------------------------------------------------------------------- /WNet/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/util/util.py -------------------------------------------------------------------------------- /WNet/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TangXu-Group/Remote-Sensing-Image-Change-Detection/HEAD/WNet/util/visualizer.py --------------------------------------------------------------------------------