Yu Sun
Yu Sun
Sorry. This issue hasn't fixed. I will update this issue if it is fixed.
@sunhaha123 Don't be. My apologize. Yes, I think I have located the problem of causing this problem after dicussion with many people. The reason might be low resolution of head...
Have you fine-tuned ROMP on yoga-82 dataset with 2D pose annotations? To get a more accurate fitting, we may need the assitance of 2D pose. Taking ROMP's output as initialization,...
Good question. The `j3d_smpl24` and `kp3d_smpl24_results` are both in shape B x 24 x 3. The last dimension is in order of (x,y,z). While the `results[img_path][subject_idx]['j3d_smpl24'] ` is in shape...
Sorry for the delayed reply! At this moment, I have something urgent at hand. But I will look into the SPIN joints you mentioned later. I think it wouldn't need...
I have submitted a [commit](https://github.com/Arthur151/CenterHMR/commit/173288a795cb15267ba0aa1f6d3a9aeef83c1462) to support the extra 24 joints in SPIN (compared with 25 openpose joints we already support). With this commit, the result files will contain a...
Sorry for the bug. I have uploaded a new [commit](https://github.com/Arthur151/CenterHMR/commit/b4527ef994be794ba3cb6471c62de2d1aeeb49d3) to fix it. Now the joint order is just as the same as what I define in [constrants.py](https://github.com/Arthur151/CenterHMR/blob/173288a795cb15267ba0aa1f6d3a9aeef83c1462/src/constants.py#L33).
Thanks for your detailed bug report. I have tested the code at a different codebase. There were something wrong while I pasted the changes to this repository. At my service....
SMPL is a statistical linear skinned model. Every smpl mesh is just a state of the model in a specific parameters. Please refer to https://smpl.is.tue.mpg.de/ for the details. I am...
Hi, there. If you want to switch the dimention of estimated 3D keypoints. You can add a line before this line: https://github.com/Arthur151/ROMP/blob/42f40fdc7be6a282657dccff7623c5872ec947ee/simple_romp/romp/main.py#L169 like: ``` outputs['joints'] = outputs['joints'][:, [0,2,1]] ``` The...