Deep_human

Code for iccv2019 paper "A Neural Network for Detailed Human Depth Estimation from a Single Image" (Under construction)

Requirements
CUDA 9.0
OpenCV 3.2
Python 3.5
tensorflow >= 1.6.0
numpy

Preparation
Download model from https://drive.google.com/open?id=16CWE_1tx3IfWDucfkTmOnRPylvv2ekRM
mkdir models
tar -xf models.tar -C models

Demo:
run python demo.py
model and test dir can be set in file params/params_iccv.py
results will be saved in output/

The input image should be 256x256 sized and tightly cropped image, and the network predict the depth for all pixels, the computed depth image needs to be cropped by silhouette, you can use some off-the-shelf tools(e.g. MaskRCNN) to get the foreground region, or use the segmentation result obtained from segmentation-net.

Training data can be downloaded here:
https://drive.google.com/file/d/18tXcv68ke3ln0ITE-DbjnvIBiQV1QYbb/view?usp=sharing

References:
@InProceedings{Tang_2019_ICCV, author = {Tang, Sicong and Tan, Feitong and Cheng, Kelvin and Li, Zhaoyang and Zhu, Siyu and Tan, Ping}, title = {A Neural Network for Detailed Human Depth Estimation From a Single Image}, booktitle = {The IEEE International Conference on Computer Vision (ICCV)}, month = {October}, year = {2019} }