├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── codes ├── config.py ├── exr.py ├── image_io.py ├── loss.py ├── model.py ├── network.py ├── tester.py ├── weighted_average.py └── weighted_average_lib.so ├── data └── memo ├── license ├── representative_image.png └── run.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | data/ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/README.md -------------------------------------------------------------------------------- /codes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/config.py -------------------------------------------------------------------------------- /codes/exr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/exr.py -------------------------------------------------------------------------------- /codes/image_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/image_io.py -------------------------------------------------------------------------------- /codes/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/loss.py -------------------------------------------------------------------------------- /codes/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/model.py -------------------------------------------------------------------------------- /codes/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/network.py -------------------------------------------------------------------------------- /codes/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/tester.py -------------------------------------------------------------------------------- /codes/weighted_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/weighted_average.py -------------------------------------------------------------------------------- /codes/weighted_average_lib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/codes/weighted_average_lib.so -------------------------------------------------------------------------------- /data/memo: -------------------------------------------------------------------------------- 1 | Folder for overall dataset 2 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/license -------------------------------------------------------------------------------- /representative_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/representative_image.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGLab-GIST/deep-combiner/HEAD/run.sh --------------------------------------------------------------------------------