From 4807df9f4e49c252fad9c35202c6e29f17051e91 Mon Sep 17 00:00:00 2001 From: Bobholamovic <bob1998425@hotmail.com> Date: Sun, 8 Dec 2019 23:34:19 +0800 Subject: [PATCH] Add README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a1d8f9 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Fully Convolutional Siamese Networks for Change Detection + +This is an unofficial implementation of the paper + +> Rodrigo Caye Daudt, Bertrand Le Saux, Alexandre Boulch. (2018, October). Fully convolutional siamese networks for change detection. In 2018 25th IEEE International Conference on Image Processing (ICIP) (pp. 4063-4067). IEEE. + +as the [official repo](https://github.com/rcdaudt/fully_convolutional_change_detection) does not provide the training code. + +[paper link](https://ieeexplore.ieee.org/abstract/document/8451652) + +# Usage + +```bash +# The network definition scripts are from the original repo +git clone --recurse-submodules git@github.com:Bobholamovic/FCN-CD-PyTorch.git +``` + +```bash +cd src +python train.py train --exp-config ../config_base.yaml +``` \ No newline at end of file -- GitLab