单目3D人脸重建DECA

 

#SIGGRAPH2021单目3D人脸重建,皱纹可以随着表情而产生自然变化,更加逼真。

代码已开源DECA: Learning an Animatable Detailed 3D Face Model from In-the-Wild Images 单位 | 马普所

论文 | https://files.is.tue.mpg.de/black/papers/SIGGRAPH21_DECA.pdf

代码 | https://github.com/YadiraF/DECA

主页 | https://deca.is.tue.mpg.de/

开源了预训练模型:

model_path="deca_model.tar"

 checkpoint = torch.load(model_path)
            self.checkpoint = checkpoint
            util.copy_state_dict(self.E_flame.state_dict(), checkpoint['E_flame'])
            util.copy_state_dict(self.E_detail.state_dict(), checkpoint['E_detail'])
            util.copy_state_dict(self.D_detail.state_dict(), checkpoint['D_detail'])

只有torch能读这个文件,netorn打开失败。

 

依赖项:pytorch3d

windows安装方法,参考我的脸另一篇博客:

ht

你可能感兴趣的:(深度学习宝典,3D视觉)