├── README.md ├── dataset.py ├── figures ├── .keep ├── CFMNet.png ├── CFMNet60.png ├── ffdnet_5560.png ├── ffdnet_6060.png ├── gray.png ├── noisy60.png └── rgb.png ├── models.py ├── models └── .keep ├── prepare_patches.py ├── test.py ├── test_spatial_varient.py ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/dataset.py -------------------------------------------------------------------------------- /figures/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /figures/CFMNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/CFMNet.png -------------------------------------------------------------------------------- /figures/CFMNet60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/CFMNet60.png -------------------------------------------------------------------------------- /figures/ffdnet_5560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/ffdnet_5560.png -------------------------------------------------------------------------------- /figures/ffdnet_6060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/ffdnet_6060.png -------------------------------------------------------------------------------- /figures/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/gray.png -------------------------------------------------------------------------------- /figures/noisy60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/noisy60.png -------------------------------------------------------------------------------- /figures/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/figures/rgb.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/models.py -------------------------------------------------------------------------------- /models/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prepare_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/prepare_patches.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/test.py -------------------------------------------------------------------------------- /test_spatial_varient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/test_spatial_varient.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dujiazhi/CFMNet/HEAD/utils.py --------------------------------------------------------------------------------