我想获得每个节点的绝对值。绝对值的意思是到根的距离。
如果我有一个骨架模型。
根孩子是
root
left hip - child
left knee - child
left foot - child
assume that all the bones lengths are equal to 1.
root to hip = 1
hip to knee = 1
knee to foot = 1
所以如果我想从根部得到足关节的位置,应该是3。对吗?
root to foot = root to hip + hip to knee + knee to foot = 3
所以这些是我正在使用的子程序..
void ComputeAbs()
{
for(unsigned int i=1; i<nNodes(); i++)
{
node* b = getNode(i);
if(b)
{
b->nb = ComputeAbsSum(b);
}
}
}
int ComputeAbsSum(node *b)
{
int m = b->nb;
if (b->child != NULL)
{
m *= ComputeAbsSum(b->child);
}
return m;
}
输出就像
root to hip = 3
root to knee = 2
root to foot = 1
But I want in a reverse way, i should get like this
root to hip = 1
root to knee = 2
root to foot = 3
我怎样才能达到这个结果?如何将树的孩子值从孩子开始添加到根?
最终目标是通过计算关节的绝对变换得到最终的位姿。
bonePoseAbsolute[i] = bonePoseAbsolute[parentIndex] * bonePoseRelative[i];
谢谢。