├── README.md ├── ckpt └── .gitignore ├── codes ├── FAC │ ├── __init__.py │ └── kernelconv2d │ │ ├── KernelConv2D.py │ │ ├── KernelConv2D_cuda.cpp │ │ ├── KernelConv2D_cuda.h │ │ ├── KernelConv2D_kernel.cu │ │ ├── KernelConv2D_kernel.h │ │ ├── __init__.py │ │ └── setup.py ├── dataloader.py ├── feature_detectors.py ├── generic_train_test.py ├── metrics.py ├── model_CR_net.py ├── model_base.py ├── net_CR_RDN.py ├── submodules.py ├── test_CR.py └── train_CR_net.py └── data ├── data.csv ├── s1 ├── ROIs1970_fall_139_p839.tif └── ROIs2017_winter_112_p797.tif ├── s2_cloudfree ├── ROIs1970_fall_139_p839.tif └── ROIs2017_winter_112_p797.tif └── s2_cloudy ├── ROIs1970_fall_139_p839.tif └── ROIs2017_winter_112_p797.tif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/.gitignore: -------------------------------------------------------------------------------- 1 | *.pth -------------------------------------------------------------------------------- /codes/FAC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/KernelConv2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/KernelConv2D.py -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/KernelConv2D_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/KernelConv2D_cuda.cpp -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/KernelConv2D_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/KernelConv2D_cuda.h -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/KernelConv2D_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/KernelConv2D_kernel.cu -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/KernelConv2D_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/KernelConv2D_kernel.h -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codes/FAC/kernelconv2d/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/FAC/kernelconv2d/setup.py -------------------------------------------------------------------------------- /codes/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/dataloader.py -------------------------------------------------------------------------------- /codes/feature_detectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/feature_detectors.py -------------------------------------------------------------------------------- /codes/generic_train_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/generic_train_test.py -------------------------------------------------------------------------------- /codes/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/metrics.py -------------------------------------------------------------------------------- /codes/model_CR_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/model_CR_net.py -------------------------------------------------------------------------------- /codes/model_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/model_base.py -------------------------------------------------------------------------------- /codes/net_CR_RDN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/net_CR_RDN.py -------------------------------------------------------------------------------- /codes/submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/submodules.py -------------------------------------------------------------------------------- /codes/test_CR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/test_CR.py -------------------------------------------------------------------------------- /codes/train_CR_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/codes/train_CR_net.py -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/data.csv -------------------------------------------------------------------------------- /data/s1/ROIs1970_fall_139_p839.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s1/ROIs1970_fall_139_p839.tif -------------------------------------------------------------------------------- /data/s1/ROIs2017_winter_112_p797.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s1/ROIs2017_winter_112_p797.tif -------------------------------------------------------------------------------- /data/s2_cloudfree/ROIs1970_fall_139_p839.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s2_cloudfree/ROIs1970_fall_139_p839.tif -------------------------------------------------------------------------------- /data/s2_cloudfree/ROIs2017_winter_112_p797.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s2_cloudfree/ROIs2017_winter_112_p797.tif -------------------------------------------------------------------------------- /data/s2_cloudy/ROIs1970_fall_139_p839.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s2_cloudy/ROIs1970_fall_139_p839.tif -------------------------------------------------------------------------------- /data/s2_cloudy/ROIs2017_winter_112_p797.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xufangchn/GLF-CR/HEAD/data/s2_cloudy/ROIs2017_winter_112_p797.tif --------------------------------------------------------------------------------