You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to get the camera pose for the input image. After I read some of the code, I noticed that you utilized the following code in provider.py to render image exactly at the input camera pose (here):
I wonder why these code lines work, because the resulting mvp matrix does not consider the projection matrix. And I don't understand why we should set mvp[0, 2, 3] to zero.
Moreover, I'd like to know how could I compute a camera pose pose_gt such that the corresponding mvp matrix could computed by
Hi, when the camera params are unknown, we use the same perspective camera as ICON, so this part is hard-coded. For evaluation on THuman2.0 and CAPE, we use ground-truth camera matrices. So if you have your own camera parameters, you can also use them in the code.
Thanks for the nice work!
I want to get the camera pose for the input image. After I read some of the code, I noticed that you utilized the following code in
provider.py
to render image exactly at the input camera pose (here):I wonder why these code lines work, because the resulting mvp matrix does not consider the projection matrix. And I don't understand why we should set
mvp[0, 2, 3]
to zero.Moreover, I'd like to know how could I compute a camera pose
pose_gt
such that the corresponding mvp matrix could computed byLooking forward to your response. Thanks!
The text was updated successfully, but these errors were encountered: