犹在镜中

Results 52 comments of 犹在镜中

I just use `bpy.data.objects['Armature'].pose.bones['Pelvis'].location` to change the hip's translation. It's [here](https://github.com/yanch2116/CDBA/blob/master/addon/ops/animation.py#L43).

I can't see the picture

I see the picture now. It seems the connection closed before the program close it, try to use `try` to catch the exception in the characterDriven.py line 42.

``` def convert_cam_to_3d_trans(cams, weight=2.): (s, tx, ty) = cams[:, 0], cams[:, 1], cams[:, 2] depth, dx, dy = 1./s, tx/s, ty/s trans3d = np.stack([dx, dy, depth], 1)*weight return trans3d ```...

For VMC,I don't know much about it. However, I recently used Webscokets and WebRTC to transfer camera images and ROMP-generated parameters so that I could use webcam and ROMP to...

Instead of running ROMP in Blender, just use TCP to send the results of ROMP over as I did in my repository. Why do you need the location of the...

> @yanch2116 according to [this](https://files.is.tue.mpg.de/black/talks/SMPL-made-simple-FAQs.pdf) at page 32, what type of rotation is it? Euler angles? It's the first type Axis-Angle. But it's the product of θ and w. You...

> @yanch2116 Some progress now: [Arthur151/ROMP#193 (comment)](https://github.com/Arthur151/ROMP/issues/193#issuecomment-1152999499) You can refer to this [file](https://github.com/yanch2116/CharacterDriven-BlenderAddon/blob/master/src/initCharacter.py) as to why your posture is wrong. I had the same problem too. The reason is that...

Can you modify character skeletons in Blender? Then import it into the software you need.

> Project closed: [Arthur151/ROMP#193 (comment)](https://github.com/Arthur151/ROMP/issues/193#issuecomment-1156976805) Sorry, I was so busy these two days that I forgot to reply. The skeleton of your model is not uniform, can't be unified into...