Shreeshail Hingane

Results 25 comments of Shreeshail Hingane

If not, is there another method that uses this hybrid analytical-neural approach on the SMPLX model?

+1. Getting a ~2.25x speedup on a P40 GPU compared to CPU.

Did you solve the problem? I have the same problem: I want to add the texture map from `data/smplx_tex.png` to simulate clothing. Also, where does it mention that we need...

I'm not sure whether the issue is with the texture files or with the `.set_texture_image()` function. I am importing the texture files from this [repo](https://github.com/qzane/textured_smplx) using the function and it...

> You can add clothing as a displacement map on top of SMPL-X. You can refer to https://github.com/bharat-b7/MultiGarmentNetwork/blob/master/dress_SMPL.py for adding clothing on top of SMPL model. I tried this. I...

Sorry about the slight typo. I mean SMPL-X wherever I have written SMPL.

I am facing the same issue. @jackson1895 @vbelissen did you find a solution?

I think I might've have made a mistake. Correct me if I am wrong, but my takeaway now is that AGORA doesn't use clothed SMPL-X models. Anyway, any help towards...

> Hi, you can use the following to convert rotation matrix to vector. https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.transform.Rotation.html > > I haven't tested but a combination of 'from_matrix()' and 'as_rotvec()' should do the job....

Using the following worked for me ``` from scipy.spatial.transform import Rotation as R r = R.from_matrix(rot_matrix).as_rotvec() ```