├── LICENSE ├── README.md ├── _config.yml ├── folder ├── 1.png └── ex.png ├── model ├── __pycache__ │ ├── model.cpython-36.pyc │ ├── model.cpython-37.pyc │ ├── model_PM.cpython-36.pyc │ ├── model_PM.cpython-37.pyc │ ├── model_TR.cpython-36.pyc │ ├── model_TR.cpython-37.pyc │ ├── model_desnow.cpython-36.pyc │ ├── model_desnow.cpython-37.pyc │ ├── model_snowatt.cpython-36.pyc │ └── model_snowatt.cpython-37.pyc ├── model.py ├── model_PM.py ├── model_TR.py ├── model_desnow.py └── model_snowatt.py ├── modelParam └── Download the model.txt ├── predict.py └── testImg ├── 1.tif ├── 2.tif └── 3.tif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/_config.yml -------------------------------------------------------------------------------- /folder/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/folder/1.png -------------------------------------------------------------------------------- /folder/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/folder/ex.png -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_PM.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_PM.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_PM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_PM.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_TR.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_TR.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_TR.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_TR.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_desnow.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_desnow.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_desnow.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_desnow.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_snowatt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_snowatt.cpython-36.pyc -------------------------------------------------------------------------------- /model/__pycache__/model_snowatt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/__pycache__/model_snowatt.cpython-37.pyc -------------------------------------------------------------------------------- /model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/model.py -------------------------------------------------------------------------------- /model/model_PM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/model_PM.py -------------------------------------------------------------------------------- /model/model_TR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/model_TR.py -------------------------------------------------------------------------------- /model/model_desnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/model_desnow.py -------------------------------------------------------------------------------- /model/model_snowatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/model/model_snowatt.py -------------------------------------------------------------------------------- /modelParam/Download the model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/modelParam/Download the model.txt -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/predict.py -------------------------------------------------------------------------------- /testImg/1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/testImg/1.tif -------------------------------------------------------------------------------- /testImg/2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/testImg/2.tif -------------------------------------------------------------------------------- /testImg/3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weitingchen83/JSTASR-DesnowNet-ECCV-2020/HEAD/testImg/3.tif --------------------------------------------------------------------------------