#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'])