You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
π€ If you find ViewCrafter useful, please help β this repo, which is important to Open-Source projects. Thanks!
π Introduction
[2024-11-6]: Add a simple evaluation script for single-view novel view synthesis.
[2024-10-15]: π₯π₯ Release the code for sparse-view novel view synthesis.
[2024-09-01]: Launch the project page and update the arXiv preprint.
[2024-09-01]: Release pretrained models and the code for single-view novel view synthesis.
ViewCrafter can generate high-fidelity novel views from a single or sparse reference image, while also supporting highly precise pose control. Below shows some examples:
Zero-shot novel view synthesis (single view)
Reference image
Camera trajecotry
Generated novel view video
Zero-shot novel view synthesis (two views)
Reference image 1
Reference image 2
Generated novel view video
π§° Models
Model
Resolution
Frames
GPU Mem. & Inference Time (tested on a 40G A100, ddim 50 steps)
If you use a high PyTorch version (like torch 2.4), it may cause CUDA OOM error. Please refer to these issues for solutions.
π« Inference
1. Command line
Single view novel view synthesis
(1) Download pretrained ViewCrafter_25 and put the model.ckpt in checkpoints/model.ckpt.
(2) Run inference.py using the following script. Please refer to the configuration document and render document to set up inference parameters and camera trajectory.
sh run.sh
Sparse view novel view synthesis
(1) Download pretrained ViewCrafter_25_sparse and put the model_sparse.ckpt in checkpoints/model_sparse.ckpt. (ViewCrafter_25_sparse is specifically trained for the sparse view NVS task and performs better than ViewCrafter_25 on this task)
(2) Run inference.py using the following script. Adjust the --bg_trd parameter to clean the point cloud; higher values will produce a cleaner point cloud but may create holes in the background.
sh run_sparse.sh
2. Local Gradio demo
Download pretrained ViewCrafter_25 and put the model.ckpt in checkpoints/model.ckpt, then run:
python gradio_app.py
π Evaluation
We provide a demo script to evaluate single-view novel view synthesis:
sh run_eval.sh
The input should be a folder containing frames from your test video. We use the first frame as the reference image and the subsequent frames as target novel views.
π Citation
Please consider citing our paper if our code is useful:
@article{yu2024viewcrafter,
title={ViewCrafter: Taming Video Diffusion Models for High-fidelity Novel View Synthesis},
author={Yu, Wangbo and Xing, Jinbo and Yuan, Li and Hu, Wenbo and Li, Xiaoyu and Huang, Zhipeng and Gao, Xiangjun and Wong, Tien-Tsin and Shan, Ying and Tian, Yonghong},
journal={arXiv preprint arXiv:2409.02048},
year={2024}
}
π’ Disclaimer
β οΈThis is an open-source research exploration rather than a commercial product, so it may not meet all your expectations. Due to the variability of the video diffusion model, you may encounter failure cases. Try using different seeds and adjusting the render configs if the results are not desirable.
Users are free to create videos using this tool, but they must comply with local laws and use it responsibly. The developers do not assume any responsibility for potential misuse.
About
Official implementation of "ViewCrafter: Taming Video Diffusion Models for High-fidelity Novel View Synthesis"