Created
June 29, 2019 11:05
-
-
Save devyhia/8977224b8e701512dc236dff75710a80 to your computer and use it in GitHub Desktop.
Get OpenPose Keypoints of Interest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pointsOfInterest = getPointsOfInterest() | |
pointsOfInterest = [ | |
0; % Nose | |
1; % Neck | |
2;3;4; % Right Shoulder / Elbow / Wrist | |
5;6;7; % LEft shoulder / Elbow / Wrist | |
8; % mid hip | |
9; 10; 11; % right hip / knee / ankle | |
12; 13; 14 % left hip / knee / ankle | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment