Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.87 KB

README.md

File metadata and controls

60 lines (44 loc) · 1.87 KB

HandNeRF & HandNeRF++

teaser

HandNeRF: Neural Radiance Fields for Animatable Interacting Hands

Zhiyang Guo, Wengang Zhou, Min Wang, Li Li, Houqiang Li

Installation

conda create -n handnerf python=3.10
conda activate handnerf

# https://pytorch.org/get-started/locally/
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.8 -c pytorch -c nvidia

pip install -r requirements.txt
pip install --no-deps basicsr  # for RealESRGAN

Also, install IntagHand:

cd tools
git clone https://github.com/Dw1010/IntagHand
pip install yacs fvcore
# https://github.com/facebookresearch/pytorch3d/blob/main/INSTALL.md
pip install --no-index --no-cache-dir pytorch3d -f https://dl.fbaipublicfiles.com/pytorch3d/packaging/wheels/py310_cu118_pyt201/download.html

Then follow its data preparation guide to deploy the necessary data in tools/IntagHand/misc.

Training

bash train_hands.sh

Acknowledgement

Citation

@inproceedings{guo2023handnerf,
  title={{HandNeRF}: Neural Radiance Fields for Animatable Interacting Hands},
  author={Guo, Zhiyang and Zhou, Wengang and Wang, Min and Li, Li and Li, Houqiang},
  booktitle={CVPR},
  year={2023}
}

@article{guo2024handnerfpp,
  title={{HandNeRF++}: Modeling Animatable Interacting Hands with Neural Radiance Fields},
  author={Guo, Zhiyang and Zhou, Wengang and Wang, Min and Li, Li and Li, Houqiang},
  year={2024}
}