the issues of add on the joint
See original GitHub issueDear Sir,
Currently I am doing research project for my degree. I have some problem with adding an extra point at the middle hip (pelvis), I have change the part connection by following the parameter from [https://github.com/CMU-Perceptual-Computing-Lab/openpose/blob/master/src/openpose/pose/poseParameters.cpp]
I am using 19 points.
The issue now I am facing is about the val.py
when the code function group_keypoints(all_keypoints_by_type, pafs, pose_entry_size=19, min_paf_score=0.05, demo=False)
operating, my 'kpts_b" always get the error ‘IndexError: list index out of range’.
Hope you can tell me how to add on the point like how you add ‘neck’ by using COCO dataset.
Thank you so much.
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Attention-deficit/hyperactivity disorder, joint hypermobility ...
Impaired coordination and proprioception, fatigue, chronic pain, and dysautonomia are identified as potential bridges between ADHD and JH. Based ...
Read more >Association between adult attention-deficit hyperactivity ...
Generalised joint hypermobility (GJH) has recently been proposed as a condition that might be associated with ADHD (Baeza-Velasco et al., 2018). GJH refers...
Read more >Joint Hypermobility Links Neurodivergence to ...
Objectives: Autism, attention deficit hyperactivity disorder (ADHD), and tic disorder (Tourette syndrome; TS) are neurodevelopmental conditions ...
Read more >11 Reasons You Shouldn't Add a Joint Owner to Your Assets
Adding a child to an investment account or real estate can result in unfavorable income tax consequences for your children upon your death....
Read more >Adding tobacco to cannabis doesn't affect the high, but ...
Adding tobacco to a cannabis joint doesn't improve the experience of being stoned, but it does reduce the memory impairment inherent to ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I believe the main milestone here is to understand <del>(the paper)</del> what are
BODY_PARTS_KPT_IDS
andBODY_PARTS_PAF_IDS
, for this check #8 (you may also find some useful information in other issues). Basically you need to extend them properly (add proper values to the end), and make network to predict additional heatmap for pelvis and additional pafs (you may add two: left_hip->pelvis, right_hip->pelvis or so). The code in grouping will handle it automatically.Hope, it helped.