├── .gitignore ├── PanoFlowAPI ├── apis │ └── PanoRaft.py ├── model │ ├── base_model.py │ ├── external │ │ └── panoflow_raft.py │ └── panoflow_raft.py └── utils │ ├── padder.py │ └── pano_vis.py ├── README.md ├── __assets__ ├── 360DVD.pdf ├── example_flows │ └── 100541.mp4 └── videos │ ├── 1.gif │ ├── 1_1.gif │ ├── 2.gif │ ├── 2_1.gif │ ├── 3.gif │ ├── 3_1.gif │ ├── 4.gif │ ├── 4_1.gif │ ├── 5.gif │ ├── 5_1.gif │ ├── 6.gif │ └── 6_1.gif ├── configs ├── inference │ └── inference-v1.yaml ├── prompts │ └── 0-realisticVision.yaml └── training │ └── training.yaml ├── download_bashscripts ├── 0-MotionModule.sh ├── 1-360Adapter.sh ├── 2-RealisticVision.sh ├── 3-Lyriel.sh └── 4-WEB360.sh ├── dvd360 ├── data │ └── dataset.py ├── models │ ├── adapter360.py │ ├── attention.py │ ├── motion_module.py │ ├── resnet.py │ ├── unet.py │ └── unet_blocks.py ├── pipelines │ └── pipeline_animation.py └── utils │ ├── 360TextFusion.py │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ ├── erp2pers.py │ └── util.py ├── environment.yaml ├── scripts ├── animate.py └── video2flow.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/.gitignore -------------------------------------------------------------------------------- /PanoFlowAPI/apis/PanoRaft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/apis/PanoRaft.py -------------------------------------------------------------------------------- /PanoFlowAPI/model/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/model/base_model.py -------------------------------------------------------------------------------- /PanoFlowAPI/model/external/panoflow_raft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/model/external/panoflow_raft.py -------------------------------------------------------------------------------- /PanoFlowAPI/model/panoflow_raft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/model/panoflow_raft.py -------------------------------------------------------------------------------- /PanoFlowAPI/utils/padder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/utils/padder.py -------------------------------------------------------------------------------- /PanoFlowAPI/utils/pano_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/PanoFlowAPI/utils/pano_vis.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/README.md -------------------------------------------------------------------------------- /__assets__/360DVD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/360DVD.pdf -------------------------------------------------------------------------------- /__assets__/example_flows/100541.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/example_flows/100541.mp4 -------------------------------------------------------------------------------- /__assets__/videos/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/1.gif -------------------------------------------------------------------------------- /__assets__/videos/1_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/1_1.gif -------------------------------------------------------------------------------- /__assets__/videos/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/2.gif -------------------------------------------------------------------------------- /__assets__/videos/2_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/2_1.gif -------------------------------------------------------------------------------- /__assets__/videos/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/3.gif -------------------------------------------------------------------------------- /__assets__/videos/3_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/3_1.gif -------------------------------------------------------------------------------- /__assets__/videos/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/4.gif -------------------------------------------------------------------------------- /__assets__/videos/4_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/4_1.gif -------------------------------------------------------------------------------- /__assets__/videos/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/5.gif -------------------------------------------------------------------------------- /__assets__/videos/5_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/5_1.gif -------------------------------------------------------------------------------- /__assets__/videos/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/6.gif -------------------------------------------------------------------------------- /__assets__/videos/6_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/__assets__/videos/6_1.gif -------------------------------------------------------------------------------- /configs/inference/inference-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/configs/inference/inference-v1.yaml -------------------------------------------------------------------------------- /configs/prompts/0-realisticVision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/configs/prompts/0-realisticVision.yaml -------------------------------------------------------------------------------- /configs/training/training.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/configs/training/training.yaml -------------------------------------------------------------------------------- /download_bashscripts/0-MotionModule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/download_bashscripts/0-MotionModule.sh -------------------------------------------------------------------------------- /download_bashscripts/1-360Adapter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/download_bashscripts/1-360Adapter.sh -------------------------------------------------------------------------------- /download_bashscripts/2-RealisticVision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/download_bashscripts/2-RealisticVision.sh -------------------------------------------------------------------------------- /download_bashscripts/3-Lyriel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/download_bashscripts/3-Lyriel.sh -------------------------------------------------------------------------------- /download_bashscripts/4-WEB360.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/download_bashscripts/4-WEB360.sh -------------------------------------------------------------------------------- /dvd360/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/data/dataset.py -------------------------------------------------------------------------------- /dvd360/models/adapter360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/adapter360.py -------------------------------------------------------------------------------- /dvd360/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/attention.py -------------------------------------------------------------------------------- /dvd360/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/motion_module.py -------------------------------------------------------------------------------- /dvd360/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/resnet.py -------------------------------------------------------------------------------- /dvd360/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/unet.py -------------------------------------------------------------------------------- /dvd360/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/models/unet_blocks.py -------------------------------------------------------------------------------- /dvd360/pipelines/pipeline_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/pipelines/pipeline_animation.py -------------------------------------------------------------------------------- /dvd360/utils/360TextFusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/utils/360TextFusion.py -------------------------------------------------------------------------------- /dvd360/utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /dvd360/utils/convert_lora_safetensor_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/utils/convert_lora_safetensor_to_diffusers.py -------------------------------------------------------------------------------- /dvd360/utils/erp2pers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/utils/erp2pers.py -------------------------------------------------------------------------------- /dvd360/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/dvd360/utils/util.py -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/environment.yaml -------------------------------------------------------------------------------- /scripts/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/scripts/animate.py -------------------------------------------------------------------------------- /scripts/video2flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/scripts/video2flow.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akaneqwq/360DVD/HEAD/train.py --------------------------------------------------------------------------------