Spaces:
Running
on
L40S
A newer version of the Gradio SDK is available:
5.9.0
PSHuman
This is the official implementation of PSHuman: Photorealistic Single-image 3D Human Reconstruction using Cross-Scale Multiview Diffusion.
Project Page | Arxiv | Weights
https://github.com/user-attachments/assets/b62e3305-38a7-4b51-aed8-1fde967cca70
https://github.com/user-attachments/assets/76100d2e-4a1a-41ad-815c-816340ac6500
Given a single image of a clothed person, PSHuman facilitates detailed geometry and realistic 3D human appearance across various poses within one minute.
π Update
- [2024.11.30]: Release the SMPL-free version, which does not requires SMPL condition for multview generation and perfome well in general posed human.
Installation
conda create -n pshuman python=3.10
conda activate pshuman
# torch
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu121
# other depedency
pip install -r requirement.txt
This project is also based on SMPLX. We borrowed the related models from ECON and SIFU, and re-orginized them, which can be downloaded from Onedrive.
Inference
- Given a human image, we use Clipdrop or
rembg
to remove the background. For the latter, we provide a simple scrip.
python utils/remove_bg.py --path $DATA_PATH$
Then, put the RGBA images in the $DATA_PATH$
.
- By running inference.py, the textured mesh and rendered video will be saved in
out
.
CUDA_VISIBLE_DEVICES=$GPU python inference.py --config configs/inference-768-6view.yaml \
pretrained_model_name_or_path='pengHTYX/PSHuman_Unclip_768_6views' \
validation_dataset.crop_size=740 \
with_smpl=false \
validation_dataset.root_dir=$DATA_PATH$ \
seed=600 \
num_views=7 \
save_mode='rgb'
You can adjust the crop_size
(720 or 740) and seed
(42 or 600) to obtain best results for some cases.
Training
For the data preparing and preprocessing, please refer to our paper. Once the data is ready, we begin the training by running
bash scripts/train_768.sh
You should modified some parameters, such as data_common.root_dir
and data_common.object_list
.
Related projects
We collect code from following projects. We thanks for the contributions from the open-source community!
ECON and SIFU recover human mesh from single human image.
Era3D and Unique3D generate consistent multiview images with single color image.
Continuous-Remeshing for Inverse Rendering.
Citation
If you find this codebase useful, please consider cite our work.
@article{li2024pshuman,
title={PSHuman: Photorealistic Single-view Human Reconstruction using Cross-Scale Diffusion},
author={Li, Peng and Zheng, Wangguandong and Liu, Yuan and Yu, Tao and Li, Yangguang and Qi, Xingqun and Li, Mengfei and Chi, Xiaowei and Xia, Siyu and Xue, Wei and others},
journal={arXiv preprint arXiv:2409.10141},
year={2024}
}