michalfaber / keras_Realtime_Multi-Person_Pose_Estimation

Keras version of Realtime Multi-Person Pose Estimation project
Other
780 stars 372 forks source link

Evaluate results using PCK metric #60

Open MinaGhadimi opened 6 years ago

MinaGhadimi commented 6 years ago

Hi Thank you for reading my question!

As I noticed during reading your code, there is no code to evaluate results and calculate accuracy, is that true? As I read in the paper, PCK metric is used to check if a detection is true or not. In PCK metric, height and width of bounding boxes of parts are needed. How can I find these?

Thank You.

michalfaber commented 6 years ago

Hi @MinaGhadimi This code doesn't contain PCK metric. Check out the original code https://github.com/ZheC/Realtime_Multi-Person_Pose_Estimation/blob/master/testing/evalCOCO.m

MinaGhadimi commented 6 years ago

Thank You.