Closed jameskuma closed 4 months ago
Hello, thanks for your interest in our work.
You may interpret gamma
as a predicted scale factor and k_value
as combined virtual camera intrinsics as defined in the config file.
If you need to transform the projection from bbox space to full image space, you may refer to this code in the inference pipeline, where we transform the camera intrinsics with the bbox information in the full image.
Sure! Thank you for replying! It solved my confusion and so I close this issue.
Thank you for sharing this work!
I find SMPLer-X estimate camera translation with function here:
And
self.get_camera_trans
takecam_param
as input. I am confused about the meaning ofcam_param
. It seems likeIn function
self.get_camera_trans
:What is the meaning of
gamma
andk_value
? Moreover, as far as I know, the correct camera translation should be further adjusted since image cropping is applied to the input image. If I want get the camera translation to the full image, which part should I change or I should recomputecam_param
?