vitoralbiero / img2pose

The official PyTorch implementation of img2pose: Face Alignment and Detection via 6DoF, Face Pose Estimation - CVPR 2021
Other
588 stars 109 forks source link

Question for face alignment #60

Closed FunkyKoki closed 2 years ago

FunkyKoki commented 2 years ago

Thanks again for your work.

I am curious about one another thing. In your paper, you try to convince the readers about the superiority of regressing 6DoF directly from the original image (without landmark regression). However, how to align the corresponding faces according to the 6DoF information?

vitoralbiero commented 2 years ago

We use the 6DoF to project points from the 3D model into the image. Then, we use those points for alignment. See the code in here.

FunkyKoki commented 2 years ago

Thank you, I did not notice that.