Skip to content

Commit

Permalink
Create AlgebraicTriangulation multi-view pose class.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristijanbartol committed Jun 6, 2022
1 parent c8e91ff commit 8a93262
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions mmpose/models/detectors/multiview_pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -964,3 +964,16 @@ def forward_dummy(self, feature_maps):
initial_cubes = feature_maps[0].new_zeros(batch_size, num_channels,
*self.cube_size)
_ = self.center_net(initial_cubes)


@POSENETS.register_module()
class AlgebraicTriangulation(BasePose):
"""Estimate 3D human pose using learnable weighted triangulation.
Please refer to the
`paper <https://arxiv.org/abs/1905.05754>` for details.
Args:
"""

def __init__(self):
pass

0 comments on commit 8a93262

Please sign in to comment.