├── LICENSE ├── README.md ├── args_file.py ├── ckp ├── demo.jpg └── video.gif ├── infer.py ├── infer.sh ├── models ├── blocks.py ├── controlnet1x1.py ├── pipeline_controlnet_1x1_4dunet.py └── unet_2d_condition_multiview.py ├── train.py ├── train.sh └── utils ├── common.py ├── dataset_nusmtv.py └── gen_mtp.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/README.md -------------------------------------------------------------------------------- /args_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/args_file.py -------------------------------------------------------------------------------- /ckp/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/ckp/demo.jpg -------------------------------------------------------------------------------- /ckp/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/ckp/video.gif -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/infer.py -------------------------------------------------------------------------------- /infer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/infer.sh -------------------------------------------------------------------------------- /models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/models/blocks.py -------------------------------------------------------------------------------- /models/controlnet1x1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/models/controlnet1x1.py -------------------------------------------------------------------------------- /models/pipeline_controlnet_1x1_4dunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/models/pipeline_controlnet_1x1_4dunet.py -------------------------------------------------------------------------------- /models/unet_2d_condition_multiview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/models/unet_2d_condition_multiview.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/train.sh -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/dataset_nusmtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/utils/dataset_nusmtv.py -------------------------------------------------------------------------------- /utils/gen_mtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnVision-Research/SyntheOcc/HEAD/utils/gen_mtp.py --------------------------------------------------------------------------------