Regarding camera intrinsic calibration parameters, do you recommend obtaining them by calling the following code?
calibration_params = zed.get_camera_information().camera_configuration.calibration_parameters;
focal_left_x = calibration_params.left_cam.fx;
focal_left_y = calibration_params.left_cam.fy;
principal_left_x = calibration_params.left_cam.cx;
principal_left_y = calibration_params.left_cam.cy;
distortion_coefficient = calibration_params.left_cam.disto.
Alternatively, locate an SN****.conf file under /usr/local/zed/settings and retrieve the corresponding camera intrinsic parameters and distortion coefficients based on the configured camera resolution?