src/featuresets.py [128:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def _get_joint_idx(self):
        return KeyframeIdx.all.values()

    def _get_lfinger_idx(self):
        l_hand, _ = KeyframeIdx.get_hand_joints()
        return l_hand[1:]

    def _get_rfinger_idx(self):
        _, r_hand = KeyframeIdx.get_hand_joints()
        return r_hand[1:]

    def data_to_features(self):
        features = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/featuresets.py [185:197]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def _get_joint_idx(self):
        return KeyframeIdx.all.values()

    def _get_lfinger_idx(self):
        l_hand, _ = KeyframeIdx.get_hand_joints()
        return l_hand[1:]

    def _get_rfinger_idx(self):
        _, r_hand = KeyframeIdx.get_hand_joints()
        return r_hand[1:]

    def data_to_features(self):
        features = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



