hongsukchoi / TCMR_RELEASE

Official Pytorch implementation of "Beyond Static Features for Temporally Consistent 3D Human Pose and Shape from a Video", CVPR 2021
MIT License
287 stars 39 forks source link

what's the difference between Regressor and HMR? #21

Open lucasjinreal opened 2 years ago

lucasjinreal commented 2 years ago

what's the difference between Regressor and HMR?

they seems output same thing.

hongsukchoi commented 2 years ago

Basically the two network architectures are the same, but I used two separate classes for separate purposes. The HMR is the one used for extracting static image features with the pretrained model weights. (only using the backbone) The Regressor is used for training TCMR.

Actually the codes are little bit modified from VIBE, so you can check their codes too:)