return body mesh in T pose, support body and head param dict only
(self, param_dict)
| 802 | return prediction |
| 803 | |
| 804 | def decode_Tpose(self, param_dict): |
| 805 | ''' return body mesh in T pose, support body and head param dict only |
| 806 | ''' |
| 807 | verts, _, _ = self.smplx( |
| 808 | shape_params=param_dict['shape'], |
| 809 | expression_params=param_dict['exp'], |
| 810 | jaw_pose=param_dict['jaw_pose']) |
| 811 | return verts |
nothing calls this directly
no outgoing calls
no test coverage detected