├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── assets ├── clock04.jpg ├── rc_car02.jpg ├── rc_car03.jpg ├── rc_car04.jpg └── teaser.png ├── bootstrap.sh ├── configs └── config.yaml ├── latent_unfold ├── __init__.py ├── latent_unfold.py └── register.py ├── requirements.txt ├── run_latent_unfold.py └── utils ├── __init__.py ├── image_utils.py ├── prompt_utils.py └── seg_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/app.py -------------------------------------------------------------------------------- /assets/clock04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/assets/clock04.jpg -------------------------------------------------------------------------------- /assets/rc_car02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/assets/rc_car02.jpg -------------------------------------------------------------------------------- /assets/rc_car03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/assets/rc_car03.jpg -------------------------------------------------------------------------------- /assets/rc_car04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/assets/rc_car04.jpg -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /latent_unfold/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /latent_unfold/latent_unfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/latent_unfold/latent_unfold.py -------------------------------------------------------------------------------- /latent_unfold/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/latent_unfold/register.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_latent_unfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/run_latent_unfold.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/utils/image_utils.py -------------------------------------------------------------------------------- /utils/prompt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/utils/prompt_utils.py -------------------------------------------------------------------------------- /utils/seg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/LatentUnfold/HEAD/utils/seg_utils.py --------------------------------------------------------------------------------