前后帧同一个人的骨架怎么匹配?
#2896
Replies: 1 comment
-
在其它项目中,有用追踪来匹配骨骼点的,请问mmaction2有没有类似的功能呢? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
在代码中用所有帧最大的人数构造一个keypoint张量,keypoint = np.zeros((num_frame, num_person, num_keypoint, 2),
dtype=np.float16),然后循环地放入骨骼点的位置,但是这样做同一个人的骨骼点可能会放到不同的维度,如何解决这个问题呢?
Beta Was this translation helpful? Give feedback.
All reactions