Open lllll8 opened 1 year ago
Hi,
cam_param[:, :2]
is the xy translation of the mesh in the camera coordinate, k_value
is the absolute distance of the mesh from the camera using the perspective camera, cam_param[:, 2]
is the learned correction factor that could improve the accuracy of k_value
, t_z
is the final absolute distance from the camera, and cam_trans
is the xyz translation of the mesh in the camera coordinate.
For the theoritical background, please refer to this paper: https://arxiv.org/abs/1907.11346
Thanks for your to spend time responsing above question, you do great work!!!
` def get_camera_trans(self, cam_param, meta_info, is_render):
camera translation
Hi, how to understand this function about the parameters including cam_param, gamma, k_value,t_z, cam_trans?