leonid-pishchulin / poseval

Evaluation of multi-person pose estimation and tracking
Other
211 stars 49 forks source link

convert bug #18

Closed leoxiaobin closed 5 years ago

leoxiaobin commented 5 years ago

on the line: https://github.com/leonid-pishchulin/poseval/blob/master/py/convert.py#L392

if landmark_idx_can:

should be:

if landmark_idx_can is not None:

because the original code will ignore the landmark whose index is 0.

leonid-pishchulin commented 5 years ago

fixed