├── .gitignore ├── README.md ├── code ├── Res2Net.py ├── config_val.py ├── demo.py └── res2net2.py ├── images └── fig1.png ├── model └── model.txt ├── paper └── CVPRW_Relight.pdf └── test ├── guide ├── Pair011.npy └── Pair011.png └── input ├── Pair011.npy └── Pair011.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/README.md -------------------------------------------------------------------------------- /code/Res2Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/code/Res2Net.py -------------------------------------------------------------------------------- /code/config_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/code/config_val.py -------------------------------------------------------------------------------- /code/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/code/demo.py -------------------------------------------------------------------------------- /code/res2net2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/code/res2net2.py -------------------------------------------------------------------------------- /images/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/images/fig1.png -------------------------------------------------------------------------------- /model/model.txt: -------------------------------------------------------------------------------- 1 | put model weight.pkl here -------------------------------------------------------------------------------- /paper/CVPRW_Relight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/paper/CVPRW_Relight.pdf -------------------------------------------------------------------------------- /test/guide/Pair011.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/test/guide/Pair011.npy -------------------------------------------------------------------------------- /test/guide/Pair011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/test/guide/Pair011.png -------------------------------------------------------------------------------- /test/input/Pair011.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/test/input/Pair011.npy -------------------------------------------------------------------------------- /test/input/Pair011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dectrfov/NTIRE-2021-Depth-Guided-Image-Any-to-Any-relighting/HEAD/test/input/Pair011.png --------------------------------------------------------------------------------