├── .gitignore ├── .gitmodules ├── License-Code.txt ├── README.md ├── assets ├── camel_anaglyph.jpg ├── camel_sbs.jpg ├── camel_splatting_results.jpg ├── demo.gif └── teaser.jpg ├── depth_splatting_inference.py ├── inpainting_inference.py ├── pipelines ├── __init__.py └── stereo_video_inpainting.py ├── requirements.txt ├── run_inference.sh └── source_video └── camel.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/.gitmodules -------------------------------------------------------------------------------- /License-Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/License-Code.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/README.md -------------------------------------------------------------------------------- /assets/camel_anaglyph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/assets/camel_anaglyph.jpg -------------------------------------------------------------------------------- /assets/camel_sbs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/assets/camel_sbs.jpg -------------------------------------------------------------------------------- /assets/camel_splatting_results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/assets/camel_splatting_results.jpg -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/assets/teaser.jpg -------------------------------------------------------------------------------- /depth_splatting_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/depth_splatting_inference.py -------------------------------------------------------------------------------- /inpainting_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/inpainting_inference.py -------------------------------------------------------------------------------- /pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipelines/stereo_video_inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/pipelines/stereo_video_inpainting.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/run_inference.sh -------------------------------------------------------------------------------- /source_video/camel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentARC/StereoCrafter/HEAD/source_video/camel.mp4 --------------------------------------------------------------------------------