camera external parameters and robotic arm pose

#28
by yingyw - opened

I would like to ask, 1. Why is there a difference between the head camera's extrinsic parameters (head_extrinsic_params.json) and the frame-by-frame extrinsic parameter values ​​(head_extrinsic_params_aligned.json)? 2. Is the coordinate system of the head camera's extrinsic calibration the same as the coordinate system of the left and right hand poses? Because I want to get the relationship between the end pose and the head camera image coordinates for calculation. Thank you!!

yingyw changed discussion title from 相机外参和机械臂位姿关系 to camera external parameters and robotic arm pose
AgiBot World org

Hi, thanks for your interest in our work! Just sending over my response to your question:

  1. The extrinsic parameters in head_extrinsic_params.json are the default setting for the head perspective. However, the head perspective will vary during data collection, so please use the frame-by-frame extrinsic parameters in 'head_extrinsic_params_aligned.json'.
  2. Yes, the head camera's extrinsic and hand poses are defined in the same coordinate system. Note :This extrinsic is not the transformation matrix from the ego coordinate system to the camera coordinate system. So you should use the following formula camera_pos = rotation_matrix.T @ (current_point_copy -translation_vector.reshape).
    Hope that helps! Let me know if you have any more questions.

@BobXie Hi, thank for your answer. Based on your answer, I understand that if I want to map an end position (/state/end/position) to the head camera coordinate, I should perform the same transformation. However, I observed some errors in the visualization results, where it appears some axes are flipped. Could you please confirm if using the same transformation is correct to achieve my goal? (i.e., end_point_in_head = rotation_matrix.T @ (state_end_position - translation_vector.reshape))

Sign up or log in to comment