Kebii / R2ET

(CVPR 2023) Skinned Motion Retargeting with Residual Perception of Motion Semantics & Geometry

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

在extract_shape程序中,为什么只将右臂控制的顶点加入到arm_vid_lst中?

X-leaners opened this issue · comments

文件第149行 ,代码如下

    body_vid_lst = []
    arm_vid_lst = []
    for i in range(vertex_part.shape[0]):
        if vertex_part[i] in body_joint_lst:
            body_vid_lst.append(i)
        if vertex_part[i] in right_arm_joint_lst:
            arm_vid_lst.append(i)

arm_vid_lst and body_vid_lst are not used in the subsequent code, so you can ignore this issue.