-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fair comparison of bone length estimation as show in fig. 9 #17
Comments
Hi @longbowzhang , Thanks for your question. Because we assume it's no possible to estimate the absolute value of bone length in a 2d to 3d task, so in our methods, we just predict the skeleton proportion. In the comparison of bone length reconstruction, we always applied same operation for each methods and ground truth. After we have a length_set, we will normalize it by Best, |
Hi @Shimingyi, Another question regarding the relative bone length issue. I strongly agree that it's not possible to estimate the absolute value of bones length in a 2d to 3d task. But as you only predict the relative bones length in network E_S, then how could you get the absolute joint position (xyz) via the estimated joints rotation and predicted relative bones length? How to compute the results of the last rows in Tab.1. Best, |
@wbhu In evaluation time, firstly we will scale the pose_3d_gt and calculate the error in scaled wise, then recover the error to actual wise by the scaling factor for making it comparable with other methods. error = alpha*(gt_3d/alpha - pre_3d)
# which is equal to
error = gt_3d - alpha*pre_3d Related code: Link Best, |
@Shimingyi Thanks for your quick response. The alpha is the scale factor to rescale the average GT bone length to be 1, right? |
Yes, we got it here. |
Got it, I have no more questions. You may help to close the issue now. Thanks very much. |
That's ok : ) |
Hi @Shimingyi thanks a lot for clarifying. |
@longbowzhang Yes, becuase we can only get the error in a scaled space, so we need a factor to recover it to orignal sapce to make it comparable with other methods. |
Hi @Shimingyi ,
I have a question about the comparison of bone length estimation as show in Fig. 9.
I suppose you use the GT scale to rescale the estimated bone lengths. However, if I understand correctly, methods such as Pavllo[CVPR19] does not employ any GT information to calculate the bone lengths.
Therefore, I am wondering whether this comparison is fair or not? Additionally, what is the unit of the y-axis in Fig. 9?
Thanks a lot in advance.
Best.
The text was updated successfully, but these errors were encountered: