Open ouusan opened 1 month ago
3.related works: Efficient Methods for HPE and HMR computational complexity: https://github.com/ouusan/some-papers/issues/17 smpl regressor follow 3-18 Hybrik: https://arxiv.org/pdf/2011.14672 and code: https://github.com/Jeff-sjtu/HybrIK
1.Revitalizing optimization for 3d human pose and shape estimation: A sparse constrained formulation(2021) code:No 2.Body meshes as points(2021) regared as a two class classification task(if a grid inculde person or not) and smpl regression task. (Resnet backbone +FPN neck+SMPL-head) code: https://github.com/jfzhang95/BMP 3.FeatER: An Efficient Network for Human Reconstruction via Feature Map-Based TransformER(2022) to preserve the inherent structure of 2D feature map representation (transformer will flatten before attention) Coarse feature maps-->FeatER->Refined feature maps(-->2d pose head)-->Feature Maps Masking(challenging due to occlusion)-->Masked feat maps-->FeatER-->Reconstructed feature maps--> 2D-3D lifting module(n,h,w to n,h,w,d)-->3d feat maps-->smpl regressor follow HybrIK (3d+mesh loss) code: https://github.com/zczcwh/POTTER/tree/main/human_mesh_recovery 4.POTTER: Pooling Attention Transformer for Efficient Human Mesh Recovery(2023) (same author with 3.) Pooling Attention to reduce the memory and computational burden without sacrificing performance+new architecture: Basic stream: High Resolution, Local-->LowResolution, Global HRstream: High Resolution, Local-->High Resolution, Local and Global. code: https://github.com/zczcwh/POTTER/tree/main/human_mesh_recovery 5.Tore: Token reduction for efficient human mesh recovery with transformer(2023) Geometry Token Reduction (GTR): only queries the body tokens, which is equivalent to the number of joints: light transformer_1/2/3 (in 1,2 only query cam_token, img_feat, joint tokens, query joints_feat, cam_feat, vertices tokens in 3) see details in https://github.com/Frank-ZY-Dou/TORE/blob/main/build/lib/metro/modeling/bert/modeling_metro.py#L137 Image Token Pruning (ITP): learn a mapping matrix(token heatmap) , that produces a clustering over origin tokens. https://github.com/Frank-ZY-Dou/TORE/blob/main/build/lib/metro/modeling/bert/modeling_metro.py#L118-L128 code: https://github.com/Frank-ZY-Dou/TORE