Views
No views yet
1mkdir checkpoints_obj && cd checkpoints_obj
2wget https://huggingface.co/yuxuanx/gen3diffusion/resolve/main/model.safetensors
3wget https://huggingface.co/yuxuanx/gen3diffusion/resolve/main/model_1.safetensors
4wget https://huggingface.co/yuxuanx/gen3diffusion/resolve/main/pifuhd.pt
5cd ..1mkdir checkpoints_avatar && cd checkpoints_avatar
2wget https://huggingface.co/yuxuanx/human3diffusion/resolve/main/model.safetensors
3wget https://huggingface.co/yuxuanx/human3diffusion/resolve/main/model_1.safetensors
4wget https://huggingface.co/yuxuanx/human3diffusion/resolve/main/pifuhd.pt
5cd ..1# given one image of object, generate 3D-GS object
2# subject should be centered in a square image, please crop properly
3# recenter plays a huge role in object reconstruction. Please adjust the recentering if the reconstruction doesn't work well
4python infer.py --test_imgs test_imgs_obj --output output_obj --checkpoints checkpoints_obj
5
6# given generated 3D-GS, perform TSDF mesh extraction
7python infer_mesh.py --test_imgs test_imgs_obj --output output_obj --checkpoints checkpoints_obj --mesh_quality high1# given one image of human, generate 3D-GS avatar
2# subject should be centered in a square image, please crop properly
3python infer.py --test_imgs test_imgs_avatar --output output_avatar --checkpoints checkpoints_avatar
4
5# given generated 3D-GS, perform TSDF mesh extraction
6python infer_mesh.py --test_imgs test_imgs_avatar --output output_avatar --checkpoints checkpoints_avatar --mesh_quality high1@inproceedings{xue2024gen3diffusion,
2 title = {{Gen-3Diffusion: Realistic Image-to-3D Generation via 2D & 3D Diffusion Synergy }},
3 author = {Xue, Yuxuan and Xie, Xianghui and Marin, Riccardo and Pons-Moll, Gerard.},
4 journal = {Arxiv},
5 year = {2024},
6}