bastianwandt / RepNet

This is the original RepNet implementation
86 stars 17 forks source link

question about data pre-processing #2

Closed sdxass closed 5 years ago

sdxass commented 5 years ago

Hi,

Thank you for your wonderful work. I want to ask why did you preprocess inputs 2d pose like this: https://github.com/bastianwandt/RepNet/blob/7b9185cadd12f850e9fa1754505fca68c34be4ed/train_repnet.py#L174

Looking forward to your response.

bastianwandt commented 5 years ago

Hi,

the origin of the image coordinates is in the upper left corner. That means all 2d joint coordinates are "flipped" at the x-axis. Since the 2d poses are mean centered the flip can be done by multiplying with -1. Hope that helps.

sdxass commented 5 years ago

Thank you for your response.