Superlee506 / Mask_RCNN_Humanpose

Mask R-CNN for Human Pose Estimation on Keras and TensorFlow.
Other
189 stars 36 forks source link

What is LIMBS? #27

Closed chenzhaiyu closed 5 years ago

chenzhaiyu commented 5 years ago

Hello,

I'm currently adapting your project to detecting buildings from aerial imagery with corners as keypoints. I see in the revised CocoConfig class there is a LIMBS list as

LIMBS = [0,-1,-1,5,-1,6,5,7,6,8,7,9,8,10,11,13,12,14,13,15,14,16]

Could you explain a bit what's the meaning of this LIMBS list?

Thanks.

Superlee506 commented 5 years ago

Hi, LIMBS stands for the start_index and right_index of every limb, you can resize it to [11, 2]. If some keypoints are not belong to any limb then one of the points will be -1. You can refers to #L356