├── README.md ├── VcT_code ├── data_config.py ├── datasets │ ├── CD_dataset.py │ ├── __pycache__ │ │ ├── CD_dataset.cpython-36.pyc │ │ ├── CD_dataset.cpython-37.pyc │ │ ├── data_utils.cpython-36.pyc │ │ └── data_utils.cpython-37.pyc │ └── data_utils.py ├── eval.sh ├── eval_cd.py ├── framework │ └── framework.jpg ├── indice0.txt ├── indice1.txt ├── main_cd.py ├── misc │ ├── __pycache__ │ │ ├── logger_tool.cpython-36.pyc │ │ ├── logger_tool.cpython-37.pyc │ │ ├── metric_tool.cpython-36.pyc │ │ └── metric_tool.cpython-37.pyc │ ├── imutils.py │ ├── logger_tool.py │ ├── metric_tool.py │ ├── pyutils.py │ └── torchutils.py ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── evaluator.cpython-36.pyc │ │ ├── evaluator.cpython-37.pyc │ │ ├── gcnlayers.cpython-36.pyc │ │ ├── gcnlayers.cpython-37.pyc │ │ ├── help_funcs.cpython-36.pyc │ │ ├── help_funcs.cpython-37.pyc │ │ ├── kmeans.cpython-36.pyc │ │ ├── kmeans.cpython-37.pyc │ │ ├── losses.cpython-36.pyc │ │ ├── losses.cpython-37.pyc │ │ ├── networks.cpython-36.pyc │ │ ├── networks.cpython-37.pyc │ │ ├── resnet.cpython-36.pyc │ │ ├── resnet.cpython-37.pyc │ │ ├── trainer.cpython-36.pyc │ │ └── trainer.cpython-37.pyc │ ├── basic_model.py │ ├── evaluator.py │ ├── gcnlayers.py │ ├── help_funcs.py │ ├── kmeans.py │ ├── losses.py │ ├── networks.py │ ├── resnet.py │ └── trainer.py ├── run_cd.sh ├── torch_scatter-2.0.9-cp37-cp37m-linux_x86_64.whl └── utils.py ├── changeDet_Paper_List.md └── figures ├── 1285_1.zip ├── results.png └── results_LEVIR_CD_vis.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/README.md -------------------------------------------------------------------------------- /VcT_code/data_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/data_config.py -------------------------------------------------------------------------------- /VcT_code/datasets/CD_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/CD_dataset.py -------------------------------------------------------------------------------- /VcT_code/datasets/__pycache__/CD_dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/__pycache__/CD_dataset.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/datasets/__pycache__/CD_dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/__pycache__/CD_dataset.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/datasets/__pycache__/data_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/__pycache__/data_utils.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/datasets/__pycache__/data_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/__pycache__/data_utils.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/datasets/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/datasets/data_utils.py -------------------------------------------------------------------------------- /VcT_code/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/eval.sh -------------------------------------------------------------------------------- /VcT_code/eval_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/eval_cd.py -------------------------------------------------------------------------------- /VcT_code/framework/framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/framework/framework.jpg -------------------------------------------------------------------------------- /VcT_code/indice0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/indice0.txt -------------------------------------------------------------------------------- /VcT_code/indice1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/indice1.txt -------------------------------------------------------------------------------- /VcT_code/main_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/main_cd.py -------------------------------------------------------------------------------- /VcT_code/misc/__pycache__/logger_tool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/__pycache__/logger_tool.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/misc/__pycache__/logger_tool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/__pycache__/logger_tool.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/misc/__pycache__/metric_tool.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/__pycache__/metric_tool.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/misc/__pycache__/metric_tool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/__pycache__/metric_tool.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/misc/imutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/imutils.py -------------------------------------------------------------------------------- /VcT_code/misc/logger_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/logger_tool.py -------------------------------------------------------------------------------- /VcT_code/misc/metric_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/metric_tool.py -------------------------------------------------------------------------------- /VcT_code/misc/pyutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/pyutils.py -------------------------------------------------------------------------------- /VcT_code/misc/torchutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/misc/torchutils.py -------------------------------------------------------------------------------- /VcT_code/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnet import * 2 | -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/evaluator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/evaluator.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/evaluator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/evaluator.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/gcnlayers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/gcnlayers.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/gcnlayers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/gcnlayers.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/help_funcs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/help_funcs.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/help_funcs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/help_funcs.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/kmeans.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/kmeans.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/kmeans.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/kmeans.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/losses.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/losses.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/losses.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/networks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/networks.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/networks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/networks.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/resnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/resnet.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/trainer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/trainer.cpython-36.pyc -------------------------------------------------------------------------------- /VcT_code/models/__pycache__/trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/__pycache__/trainer.cpython-37.pyc -------------------------------------------------------------------------------- /VcT_code/models/basic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/basic_model.py -------------------------------------------------------------------------------- /VcT_code/models/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/evaluator.py -------------------------------------------------------------------------------- /VcT_code/models/gcnlayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/gcnlayers.py -------------------------------------------------------------------------------- /VcT_code/models/help_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/help_funcs.py -------------------------------------------------------------------------------- /VcT_code/models/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/kmeans.py -------------------------------------------------------------------------------- /VcT_code/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/losses.py -------------------------------------------------------------------------------- /VcT_code/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/networks.py -------------------------------------------------------------------------------- /VcT_code/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/resnet.py -------------------------------------------------------------------------------- /VcT_code/models/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/models/trainer.py -------------------------------------------------------------------------------- /VcT_code/run_cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/run_cd.sh -------------------------------------------------------------------------------- /VcT_code/torch_scatter-2.0.9-cp37-cp37m-linux_x86_64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/torch_scatter-2.0.9-cp37-cp37m-linux_x86_64.whl -------------------------------------------------------------------------------- /VcT_code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/VcT_code/utils.py -------------------------------------------------------------------------------- /changeDet_Paper_List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/changeDet_Paper_List.md -------------------------------------------------------------------------------- /figures/1285_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/figures/1285_1.zip -------------------------------------------------------------------------------- /figures/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/figures/results.png -------------------------------------------------------------------------------- /figures/results_LEVIR_CD_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Event-AHU/VcT_Remote_Sensing_Change_Detection/HEAD/figures/results_LEVIR_CD_vis.png --------------------------------------------------------------------------------