This repository contains a pytorch implementation of "Multi-Level Pixel-Aligned Implicit Function for High-Resolution 3D Human Digitization".
This codebase provides:
- test code
- visualization code
- Python 3
- PyTorch tested on 1.1.0
- json
- PIL
- skimage
- tqdm
- cv2
For visualization
- trimesh with pyembree
- PyOpenGL
- freeglut (use
sudo apt-get install freeglut3-dev
for ubuntu users) - ffmpeg
Note: 12GB GPU memory is required to run PIFuHD model.
Run the following script to download the pretrained model. The checkpoint is saved under ./checkpoints/
.
sh ./scripts/download_trained_model.sh
To process images under ./sample_images
, run the following code:
sh ./scripts/demo.sh
The resulting obj files and rendering will be saved in ./results
. You may use meshlab (http://www.meshlab.net/) to visualize the 3D mesh output (obj file).
- run the following script to get joints for each image for testing (joints are used for image cropping only.). Make sure you correctly set the location of OpenPose binary.
python apps/process_openpose.py -d {openpose_root_path} -i {path_of_images} -o {path_of_images}
- run the following script to run reconstruction code. Make sure to set
--input_path
topath_of_images
,--out_path
to where you want to dump out results, and--ckpt_path
to the checkpoint. Note that unlike PIFu, PIFuHD doesn't require segmentation mask as input. But if you observe severe artifacts, you may try removing background with off-the-shelf tools such as removebg.
python -m apps.simple_test
- optionally, you can also remove artifacts by keeping only the biggest connected component from the mesh reconstruction with the following script. (Warning: the script will overwrite the original obj files.)
python apps/clean_mesh.py -f {path_of_objs}
To render results with turn-table, run the following code. The rendered animation (.mp4) will be stored under {path_of_objs}
.
python -m apps.render_turntable -f {path_of_objs} -ww {rendering_width} -hh {rendering_height}
# add -g for geometry rendering. default is normal visualization.
CC-BY-NC 4.0. See the LICENSE file.