├── .DS_Store ├── .gitattributes ├── FGDNet.py ├── README.md ├── demo_test_single_rgbnir.py ├── examples ├── .DS_Store └── RGB_NIR │ ├── urban_0000_gt.tiff │ ├── urban_0000_nir.tiff │ └── urban_0000_noisy.tiff ├── models └── FGDNet_rgbnir.pkl ├── results └── RGB_NIR │ └── urban_0000_res.png └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /FGDNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/FGDNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/README.md -------------------------------------------------------------------------------- /demo_test_single_rgbnir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/demo_test_single_rgbnir.py -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/RGB_NIR/urban_0000_gt.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/examples/RGB_NIR/urban_0000_gt.tiff -------------------------------------------------------------------------------- /examples/RGB_NIR/urban_0000_nir.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/examples/RGB_NIR/urban_0000_nir.tiff -------------------------------------------------------------------------------- /examples/RGB_NIR/urban_0000_noisy.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/examples/RGB_NIR/urban_0000_noisy.tiff -------------------------------------------------------------------------------- /models/FGDNet_rgbnir.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/models/FGDNet_rgbnir.pkl -------------------------------------------------------------------------------- /results/RGB_NIR/urban_0000_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/results/RGB_NIR/urban_0000_res.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lustrouselixir/FGDNet/HEAD/utils.py --------------------------------------------------------------------------------