(self, data_struct, flat_hand_mean=False)
| 1540 | return 'MANO' |
| 1541 | |
| 1542 | def create_mean_pose(self, data_struct, flat_hand_mean=False): |
| 1543 | # Create the array for the mean pose. If flat_hand is false, then use |
| 1544 | # the mean that is given by the data, rather than the flat open hand |
| 1545 | global_orient_mean = torch.zeros([3], dtype=self.dtype) |
| 1546 | pose_mean = torch.cat([global_orient_mean, self.hand_mean], dim=0) |
| 1547 | return pose_mean |
| 1548 | |
| 1549 | def extra_repr(self): |
| 1550 | msg = [super(MANO, self).extra_repr()] |