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 saw this line in the get_results function
kps[:, 0] = kps[:, 0] / cfg.INPUT_SHAPE[1] * scales[i][0] +
centers[i][0] - scales[i][0] * 0.5
kps[:, 1] = kps[:, 1] / cfg.INPUT_SHAPE[0] * scales[i][1] +
centers[i][1] - scales[i][1] * 0.5
If you use the information in ground truth and get a high score, it is unfair. Could you please explain if I misunderstand?
The text was updated successfully, but these errors were encountered:
I saw this line in the get_results function
kps[:, 0] = kps[:, 0] / cfg.INPUT_SHAPE[1] * scales[i][0] +
centers[i][0] - scales[i][0] * 0.5
kps[:, 1] = kps[:, 1] / cfg.INPUT_SHAPE[0] * scales[i][1] +
centers[i][1] - scales[i][1] * 0.5
If you use the information in ground truth and get a high score, it is unfair. Could you please explain if I misunderstand?
The text was updated successfully, but these errors were encountered: