Advertisement

单目人体深度估计

阅读量:

该模型大小为700多M,基于TensorFlow平台,提供预训练模型下载和使用方法。具体步骤包括下载预训练模型并解压,使用tracknet进行基线深度预测,使用reconnet进行细节深度预测。此外,该模型还支持自监督学习方法“Self-Supervised-Human-Depth”和单目RGB人体形状估计,基于分层网格变形技术。相关代码和模型可通过GitHub仓库https://github.com/zhuhao-nju/Self-Supervised-Human-Depth和https://github.com/zhuhao-nju/hmd获取,建议使用GPU加速运行。

模型700多m,tf平台,

  1. Download the pre-trained models
复制代码
 wget http://vault.sfu.ca/index.php/s/wZDseYefjvFPImZ/download && tar -xf download

    
 mv finetuned_hmr_model ./tracknet
    
 mv self_human_depth_model ./reconnet
  1. predict base depth with finetuned hmr model
复制代码
 cd ./tracknet

    
 python generate_tracknet_depth.py
  1. predict detail depth
复制代码
 cd ./../reconnet/predict

    
 python demo_tang_2019.py

https://github.com/zhuhao-nju/Self-Supervised-Human-Depth

With GPU:

复制代码
    pip install tensorflow-gpu==1.14

Without GPU:

复制代码
    pip install tensorflow==1.14

单目rgb人体形状估计

基于分层网格变形的单幅图像详细人体形状估计

Highly Detailed Human Shape Estimation from a Single Image Derived through Hierarchical Mesh Deformation

https://github.com/zhuhao-nju/hmd

全部评论 (0)

还没有任何评论哟~