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
In the accuracy function in evaluate.py, predicted keypoint coordinate is normalized by [h,w] / 10. For example, if heatmap size is (64,48), normalization factor is (64,48).
But, the 'pred', which is the output of 'get_max_preds' function, has [w,h] scale. (e.g, [34, 58], [40, 50]). So I think the normalization factor should be [w, h].
Thank you :)
The text was updated successfully, but these errors were encountered:
In the accuracy function in evaluate.py, predicted keypoint coordinate is normalized by [h,w] / 10. For example, if heatmap size is (64,48), normalization factor is (64,48).
But, the 'pred', which is the output of 'get_max_preds' function, has [w,h] scale. (e.g, [34, 58], [40, 50]). So I think the normalization factor should be [w, h].
Thank you :)
The text was updated successfully, but these errors were encountered: