Mirror Capture Weights with KineFX
3335 10 3- bryanebentleycgs
- Member
- 19 posts
- Joined: 9月 2020
- Offline
Greetings all,
First off, KineFX is amazing. I love it! IMHO this is the biggest leap in rigging for a VERY VERY long time. right now I am using it to augmment my rigging in Maya, as that is what my animators are used to wotking in. I love the weight painting system!
I am haveing trouble mirroring the weights. I am using a biharmonic node with a capturelayerpaint node. Most of the references I have found for moirroring weights are for the object based bone system.
I don't really understand the "ruparm/cregion 0" syntax. Do I have to use regions? Are regions generated with the kinefx system? Dose the mirror capture only work with the old system?
I can mirror the weights in maya but I would like to know if it is possible in Houdini.
Thanks in advance for any help.
Cheers,
B
First off, KineFX is amazing. I love it! IMHO this is the biggest leap in rigging for a VERY VERY long time. right now I am using it to augmment my rigging in Maya, as that is what my animators are used to wotking in. I love the weight painting system!
I am haveing trouble mirroring the weights. I am using a biharmonic node with a capturelayerpaint node. Most of the references I have found for moirroring weights are for the object based bone system.
I don't really understand the "ruparm/cregion 0" syntax. Do I have to use regions? Are regions generated with the kinefx system? Dose the mirror capture only work with the old system?
I can mirror the weights in maya but I would like to know if it is possible in Houdini.
Thanks in advance for any help.
Cheers,
B
- bryanebentleycgs
- Member
- 19 posts
- Joined: 9月 2020
- Offline
I couldn't get the traditional mirror sop working so used some wrangles to get done what I needed. It seems to work, but your skeleton and your mesh need to be symetrical.
1. Make a point group for the desitination of your weights
2. Unpack the current weight attrs on the skin. (thank you cg wiki!!)
3. create a point wrangle that finds the corresponding mirrored point on skin
4. create a point wrangle that finds corresponding mirrored joint point
5. Replace the weights with the mirrored weights the index list with the mirrored index from previous step
6. Repack attributes and plug them into the bone deform.
I hope this helps anyone struggling with the same problem. If there is a better way to do this please let me know.
Cheers,
B
1. Make a point group for the desitination of your weights
2. Unpack the current weight attrs on the skin. (thank you cg wiki!!)
3. create a point wrangle that finds the corresponding mirrored point on skin
vector mirrorPt = set(-@P.x, @P.y, @P.z);
int mirrorIndex = nearpoint(0, mirrorPt);
i@mirrorPt = mirrorIndex;
vector mirrorPt = set(-@P.x, @P.y, @P.z);
int mirrorIndex = nearpoint(0, mirrorPt);
i@mirrorIndex = mirrorIndex;
float mirriorCaptData[] = point(0, "boneCapture_data", i@mirrorPt); int mirriorCaptIndex[] = point(0, "boneCapture_index", i@mirrorPt); int newCaptIndex[] = {}; int mirrorBone; foreach(int i; int index; mirriorCaptIndex){ mirrorBone = point(1, "mirrorIndex", index); push(newCaptIndex, mirrorBone); } f[]@boneCapture_data = mirriorCaptData; i[]@boneCapture_index = newCaptIndex;
I hope this helps anyone struggling with the same problem. If there is a better way to do this please let me know.
Cheers,
B
- edward
- Member
- 7871 posts
- Joined: 7月 2005
- Offline
- bryanebentleycgs
- Member
- 19 posts
- Joined: 9月 2020
- Offline
- edward
- Member
- 7871 posts
- Joined: 7月 2005
- Offline
- eoinobroin
- Member
- 7 posts
- Joined: 11月 2016
- Offline
- SWest
- Member
- 313 posts
- Joined: 10月 2016
- Offline
I’ve proposed an RFE/Bug report linking to this thread. This is primarily motivated to help those users who do not use VEX. However, I'm planning to use that to get around the issue mentioned here.
Here's a video demonstrating that simply destroying the weights in the "to" cregions prior to mirroring actually works fine.
Cheers!
Here's a video demonstrating that simply destroying the weights in the "to" cregions prior to mirroring actually works fine.
Cheers!
Edited by SWest - 2023年9月25日 17:18:58
Interested in character concepts, modeling, rigging, and animation. Related tool dev with Py and VEX.
- citizen
- Member
- 100 posts
- Joined: 8月 2020
- Online
I'm having a hard time mirroring weights. Houdini's workflow when it comes to this issue is a mystery to me. Neither method (copy/leave/average) seems to produce the results I want most of the time, which is, perfectly mirrored weights. Iv'e worked with other 3d s/w and although some were better than others, none was so head scratching inducing as Houdini. For example in Maya, you can select a point and see the values each joint has on it and can manually modify the value. The same in Softimage. Is this possible in Houdini?
In the attached image the circled points just won't budge (I can't share the file) no matter what joint I try to add/remove influence for. Is there any good resource, other than the cryptic docs, from which one can learn tips and good practices when working with this? I hope weight painting and mirroring workflow will get improvements in a future version.
In the attached image the circled points just won't budge (I can't share the file) no matter what joint I try to add/remove influence for. Is there any good resource, other than the cryptic docs, from which one can learn tips and good practices when working with this? I hope weight painting and mirroring workflow will get improvements in a future version.
- kodra
- Member
- 373 posts
- Joined: 6月 2023
- Offline
citizen
I'm having a hard time mirroring weights. Houdini's workflow when it comes to this issue is a mystery to me. Neither method (copy/leave/average) seems to produce the results I want most of the time, which is, perfectly mirrored weights. Iv'e worked with other 3d s/w and although some were better than others, none was so head scratching inducing as Houdini. For example in Maya, you can select a point and see the values each joint has on it and can manually modify the value. The same in Softimage. Is this possible in Houdini?
In the attached image the circled points just won't budge (I can't share the file) no matter what joint I try to add/remove influence for. Is there any good resource, other than the cryptic docs, from which one can learn tips and good practices when working with this? I hope weight painting and mirroring workflow will get improvements in a future version.
Houdini is probably the worst DCC in terms of skinning. My suggestion is to not bother.
That being said, if all the weights are properly mirrored except two points, it's likely just that your model not being perfectly symmetrical. Mirroring capture isn't topology-aware, which means even the smallest imperfections would break it.
- citizen
- Member
- 100 posts
- Joined: 8月 2020
- Online
kodraHm, it's quite possible it's not perfectly symmetrical. This is not a reasonable requirement since in many cases, this one included, you export the mesh from a sculpting package where small asymmetries at the highest level can result in small shifts at the exported lowest level.
That being said, if all the weights are properly mirrored except two points, it's likely just that your model not being perfectly symmetrical. Mirroring capture isn't topology-aware, which means even the smallest imperfections would break it.
For this model, I've used two paint and two mirror sops as in the 1st pass it was messy and the only solution I found to work (well, not perfectly as one can see) is to add another paint/mirror step. I guess I'll try to see if adding a 3rd will save the day.
Such a weird place to be in, considering how Houdini team's focus the last few versions was to improve character work.
edit: @kodra you were right - the points were a bit off axis, thanks for the suggestion!
Current weight painting is a far cry from kinefx in terms of quality. I hope it gets a serious revamp, very soon.
Edited by citizen - 2024年6月30日 01:31:21
- kodra
- Member
- 373 posts
- Joined: 6月 2023
- Offline
-
- Quick Links