├── .gitignore ├── LICENSE ├── README.md ├── docs ├── parameter_estimation.py ├── sidd.csv ├── 决赛.pptx └── 初赛.pptx ├── generate_trainset.py ├── model ├── NAFNet.py ├── Restormer.py ├── SwinIR.py ├── SwinPlus.py ├── Uformer.py └── build.py ├── scripts ├── some_old │ ├── naf.sh │ ├── naf_sidd43.sh │ ├── naf_sidd50.sh │ ├── rest_more.sh │ ├── rest_sidd43.sh │ ├── restormer.sh │ ├── swin+.sh │ ├── swinir.sh │ └── uformer.sh └── train.sh ├── test.py ├── test_SIDD.py ├── train.py ├── utils ├── camera_params │ └── release │ │ ├── CanonEOS5D4_params.npy │ │ ├── CanonEOS700D_params.npy │ │ ├── CanonEOS70D_params.npy │ │ ├── NikonD850_params.npy │ │ └── SonyA7S2_params.npy ├── dataset.py ├── log.py ├── noise.py └── util.py └── val.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/README.md -------------------------------------------------------------------------------- /docs/parameter_estimation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/docs/parameter_estimation.py -------------------------------------------------------------------------------- /docs/sidd.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/docs/sidd.csv -------------------------------------------------------------------------------- /docs/决赛.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/docs/决赛.pptx -------------------------------------------------------------------------------- /docs/初赛.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/docs/初赛.pptx -------------------------------------------------------------------------------- /generate_trainset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/generate_trainset.py -------------------------------------------------------------------------------- /model/NAFNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/NAFNet.py -------------------------------------------------------------------------------- /model/Restormer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/Restormer.py -------------------------------------------------------------------------------- /model/SwinIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/SwinIR.py -------------------------------------------------------------------------------- /model/SwinPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/SwinPlus.py -------------------------------------------------------------------------------- /model/Uformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/Uformer.py -------------------------------------------------------------------------------- /model/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/model/build.py -------------------------------------------------------------------------------- /scripts/some_old/naf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/naf.sh -------------------------------------------------------------------------------- /scripts/some_old/naf_sidd43.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/naf_sidd43.sh -------------------------------------------------------------------------------- /scripts/some_old/naf_sidd50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/naf_sidd50.sh -------------------------------------------------------------------------------- /scripts/some_old/rest_more.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/rest_more.sh -------------------------------------------------------------------------------- /scripts/some_old/rest_sidd43.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/rest_sidd43.sh -------------------------------------------------------------------------------- /scripts/some_old/restormer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/restormer.sh -------------------------------------------------------------------------------- /scripts/some_old/swin+.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/swin+.sh -------------------------------------------------------------------------------- /scripts/some_old/swinir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/swinir.sh -------------------------------------------------------------------------------- /scripts/some_old/uformer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/some_old/uformer.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/test.py -------------------------------------------------------------------------------- /test_SIDD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/test_SIDD.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/train.py -------------------------------------------------------------------------------- /utils/camera_params/release/CanonEOS5D4_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/camera_params/release/CanonEOS5D4_params.npy -------------------------------------------------------------------------------- /utils/camera_params/release/CanonEOS700D_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/camera_params/release/CanonEOS700D_params.npy -------------------------------------------------------------------------------- /utils/camera_params/release/CanonEOS70D_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/camera_params/release/CanonEOS70D_params.npy -------------------------------------------------------------------------------- /utils/camera_params/release/NikonD850_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/camera_params/release/NikonD850_params.npy -------------------------------------------------------------------------------- /utils/camera_params/release/SonyA7S2_params.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/camera_params/release/SonyA7S2_params.npy -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/log.py -------------------------------------------------------------------------------- /utils/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/noise.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/utils/util.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanksx233/zte_raw_image_denoising/HEAD/val.py --------------------------------------------------------------------------------