본문 바로가기

SMPL

(3)
[SMPL-X Implementation] KyujinHan/Smplify-X-Perfect-Implementation Github: https://github.com/KyujinHan/Smplify-X-Perfect-Implementation GitHub - KyujinHan/Smplify-X-Perfect-Implementation: Smplify-X implementation. (2024. 03. 18 No Error & Recent version) Smplify-X implementation. (2024. 03. 18 No Error & Recent version) - KyujinHan/Smplify-X-Perfect-Implementation github.com Smplify-X Implementation (recent version) SMPL-X를 예전에 구현한 적이 있었는데, 코드가 다시 날아가서 다시 구현하..
[MPS-Net 논문 리뷰] - Capturing Humans in Motion: Temporal-Attentive 3D Human Pose and Shape Estimation from Monocular Video *MPS-Net를 위한 논문 리뷰 글입니다! 궁금하신 점은 댓글로 남겨주세요! MPS-Net project page: MPS-Net MPS-Net References [6] Hongsuk Choi, Gyeongsik Moon, Ju Yong Chang, and Kyoung Mu Lee. Beyond static features for temporally consistent 3D human pose and shape from a video. CVPR, 2021. [8] Carl Doersch and Andrew Zisserman. Sim2real transfer learning for 3D human mps-net.github.io MPS-Net github: GitHub - MPS-Net/MPS-Net_..
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead. (Smplx 실행 에러) 갑자기 .view() function에 에러가 있다고 발생했다. 이 문제를 어떻게 해결할까? # smplx/lbs.py # Error code (below) transforms_mat = transform_mat( rot_mats.view(-1, 3, 3), rel_joints.view(-1, 3, 1)).view(-1, joints.shape[1], 4, 4) 위의 코드 block에서 오류가 일어난 상황이다. # smplx/lbs.py # Change code (below) transforms_mat = transform_mat( rot_mats.view(-1, 3, 3), rel_joints.contiguous().view(-1, 3, 1)).view(-1, joints.shape[1], 4, 4) ..

반응형