├── .gitignore ├── HazeZeroShot.py ├── LICENSE ├── LowLightZeroShot.py ├── README.md ├── UnderWaterZeroShot.py ├── model ├── __init__.py ├── hazemodel.py ├── lowmodel.py └── watermodel.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/.gitignore -------------------------------------------------------------------------------- /HazeZeroShot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/HazeZeroShot.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/LICENSE -------------------------------------------------------------------------------- /LowLightZeroShot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/LowLightZeroShot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/README.md -------------------------------------------------------------------------------- /UnderWaterZeroShot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/UnderWaterZeroShot.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/hazemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/model/hazemodel.py -------------------------------------------------------------------------------- /model/lowmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/model/lowmodel.py -------------------------------------------------------------------------------- /model/watermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/model/watermodel.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aupendu/zero-restore/HEAD/requirements.txt --------------------------------------------------------------------------------