Structure containing information of a single camera (serial number, model, calibration, etc.)That information about the camera will be returned by Camera.get_camera_information() More...
Functions | |
| def | __cinit__ (self, Camera py_camera, resizer=Resolution(0, 0)) |
| Constructor. More... | |
| def | sensors_configuration (self) |
| Device Sensors configuration as defined in SensorsConfiguration. | |
| def | camera_configuration (self) |
| Camera configuration as defined in CameraConfiguration. | |
| def | input_type (self) |
| Input type used in SDK. | |
| def | camera_resolution (self) |
| Resolution of the camera | |
| def | camera_fps (self) |
| FPS of the camera. | |
| def | camera_model (self) |
| The model of the camera (ZED, ZED2 or ZED-M). | |
| def | calibration_parameters (self) |
| Intrinsic and Extrinsic stereo CalibrationParameters for rectified/undistorded images (default). | |
| def | calibration_parameters_raw (self) |
| Intrinsic and Extrinsic stereo CalibrationParameters for original images (unrectified/distorded). | |
| def | camera_imu_transform (self) |
| IMU to Left camera transform matrix, that contains rotation and translation between IMU frame and camera frame. More... | |
| def | serial_number (self) |
| The serial number of the camera. | |
| def | camera_firmware_version (self) |
| The internal firmware version of the camera. | |
| def | sensors_firmware_version (self) |
| The internal firmware version of the sensors of ZEDM or ZED2. | |
Structure containing information of a single camera (serial number, model, calibration, etc.)
That information about the camera will be returned by Camera.get_camera_information()
| def __cinit__ | ( | self, | |
| Camera | py_camera, | ||
resizer = Resolution(0,0) |
|||
| ) |
Constructor.
Gets the CameraParameters from a Camera object.
| py_camera | : Camera object. |
| resizer | : You can specify a Resolution different from default image size to get the scaled camera information. default = (0,0) meaning original image size. |
| def camera_imu_transform | ( | self | ) |
IMU to Left camera transform matrix, that contains rotation and translation between IMU frame and camera frame.
Note that this transform was applied to the fused quaternion provided in get_imu_data() in v2.4 but not anymore starting from v2.5. See Camera.get_sensors_data() for more info.
Referenced by SensorsConfiguration.camera_imu_transform().