last-one / Pytorch_Realtime_Multi-Person_Pose_Estimation

Pytorch version of Realtime Multi-Person Pose Estimation project
MIT License
216 stars 70 forks source link

What' the difference between libseq and mapidx? #14

Closed hellojialee closed 6 years ago

hellojialee commented 6 years ago

Hi! Thank you for your awesome simplified work! Could you please help me explain the use and function between libseq and mapidx? Looking forward to you replying!

last-one commented 6 years ago

I rewrite the script based on the origin code. The limbSeq is the set of edges. For example, [2, 3] means there is an edge between point 2 and point 3. The mapIdx is the set of paf numbers corresponding to the edges. For example, the pad number corresponding to the first edge is [0, 1]. The origin code writes as [19, 20] - 19. I kept his writing. You can read the script. I think it's easy to understand what do they mean.

hellojialee commented 6 years ago

Thank you!