├── .gitignore ├── README.md ├── configs └── syreanet_test.yaml ├── dataset ├── __init__.py └── real_test_dataset.py ├── figs ├── fig-demo.png └── fig-overall_arch.png ├── helper.py ├── models ├── __init__.py ├── layers.py └── syreanet.py ├── requirements.txt ├── samples ├── bluish.png ├── greenish.png └── turbid.png ├── synthesize ├── coeffs.json └── synthesize.py ├── test.py └── utils ├── __init__.py ├── configuration.py └── prepares.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/README.md -------------------------------------------------------------------------------- /configs/syreanet_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/configs/syreanet_test.yaml -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/real_test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/dataset/real_test_dataset.py -------------------------------------------------------------------------------- /figs/fig-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/figs/fig-demo.png -------------------------------------------------------------------------------- /figs/fig-overall_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/figs/fig-overall_arch.png -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/helper.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/models/layers.py -------------------------------------------------------------------------------- /models/syreanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/models/syreanet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/bluish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/samples/bluish.png -------------------------------------------------------------------------------- /samples/greenish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/samples/greenish.png -------------------------------------------------------------------------------- /samples/turbid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/samples/turbid.png -------------------------------------------------------------------------------- /synthesize/coeffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/synthesize/coeffs.json -------------------------------------------------------------------------------- /synthesize/synthesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/synthesize/synthesize.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/test.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/utils/configuration.py -------------------------------------------------------------------------------- /utils/prepares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockWenJJ/SyreaNet/HEAD/utils/prepares.py --------------------------------------------------------------------------------