You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that in multi-view setup, gt 3d keypoints are repeated pred_keypoints_3d = output['pred_keypoints_3d'].detach() batch_size = pred_keypoints_3d.shape[0] num_samples = pred_keypoints_3d.shape[1] gt_keypoints_3d = batch['keypoints_3d'][:, :, :-1].unsqueeze(1).repeat(1, num_samples, 1, 1)
So I wonder that which coordinate frame are the gt_keypoints_3d in ? In the data processing, I believe gt_keypoints_3d are in camera coordinate frame, so why are they repeated for different views?
The text was updated successfully, but these errors were encountered:
I noticed that in multi-view setup, gt 3d keypoints are repeated
pred_keypoints_3d = output['pred_keypoints_3d'].detach()
batch_size = pred_keypoints_3d.shape[0]
num_samples = pred_keypoints_3d.shape[1]
gt_keypoints_3d = batch['keypoints_3d'][:, :, :-1].unsqueeze(1).repeat(1, num_samples, 1, 1)
So I wonder that which coordinate frame are the
gt_keypoints_3d
in ? In the data processing, I believegt_keypoints_3d
are in camera coordinate frame, so why are they repeated for different views?The text was updated successfully, but these errors were encountered: