-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
Excellent paper and code! Thanks.
By analyzing the KCS matrix and reassembling the skeleton following the paper i got something like:
6 -> 7 -> 8 -> 9
7-> 10 -> 11 -> 12
7-> 13 -> 14 -> 15
which seems to be the upper body starting at the root (hip joint), but the lower bones assemble like this:
0 -> 6
0 -> 1 -> 2
3 -> 4 -> 5
I was expecting something like this:
6 -> 0 -> 1 -> 2
6 -> 3 -> 4 -> 5
Is there a error in the KCS matrix or I misinterpreted the skeleton?
KCS matrix
Ct = tf.constant([
[1., 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1],
[-1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 1, 0, 0, 0, 0, 0, 0, 0 , 0, 0, 0, 1, 0],
[0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 1, 0, 0, 0, 0, 0 , 0, 0, 0, 0,-1],
[0, 0, 0, 0, -1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ,-1, 1, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-1, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,-1, 0, 0]])
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels