├── .gitignore ├── README.md ├── helpers └── sh_functions.py ├── images ├── anniv_lounge.jpg ├── colorful_studio.jpg ├── hotel_room.jpg ├── input.jpg └── wooden_lounge.jpg ├── inference.py └── loaders ├── Illum_loader.py └── autoenc_ldr2hdr.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/README.md -------------------------------------------------------------------------------- /helpers/sh_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/helpers/sh_functions.py -------------------------------------------------------------------------------- /images/anniv_lounge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/images/anniv_lounge.jpg -------------------------------------------------------------------------------- /images/colorful_studio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/images/colorful_studio.jpg -------------------------------------------------------------------------------- /images/hotel_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/images/hotel_room.jpg -------------------------------------------------------------------------------- /images/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/images/input.jpg -------------------------------------------------------------------------------- /images/wooden_lounge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/images/wooden_lounge.jpg -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/inference.py -------------------------------------------------------------------------------- /loaders/Illum_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/loaders/Illum_loader.py -------------------------------------------------------------------------------- /loaders/autoenc_ldr2hdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VCL3D/DeepPanoramaLighting/HEAD/loaders/autoenc_ldr2hdr.py --------------------------------------------------------------------------------