| Fx |
- {{ getCalibrationCoeffs()?.cameraIntrinsics.data[0].toFixed(2) || 0.0 }} mm |
+
+ {{
+ useCameraSettingsStore()
+ .getCalibrationCoeffs(props.videoFormat.resolution)
+ ?.cameraIntrinsics.data[0].toFixed(2) || 0.0
+ }}
+ mm
+ |
| Fy |
- {{ getCalibrationCoeffs()?.cameraIntrinsics.data[4].toFixed(2) || 0.0 }} mm |
+
+ {{
+ useCameraSettingsStore()
+ .getCalibrationCoeffs(props.videoFormat.resolution)
+ ?.cameraIntrinsics.data[4].toFixed(2) || 0.0
+ }}
+ mm
+ |
| Cx |
- {{ getCalibrationCoeffs()?.cameraIntrinsics.data[2].toFixed(2) || 0.0 }} px |
+
+ {{
+ useCameraSettingsStore()
+ .getCalibrationCoeffs(props.videoFormat.resolution)
+ ?.cameraIntrinsics.data[2].toFixed(2) || 0.0
+ }}
+ px
+ |
| Cy |
- {{ getCalibrationCoeffs()?.cameraIntrinsics.data[5].toFixed(2) || 0.0 }} px |
+
+ {{
+ useCameraSettingsStore()
+ .getCalibrationCoeffs(props.videoFormat.resolution)
+ ?.cameraIntrinsics.data[5].toFixed(2) || 0.0
+ }}
+ px
+ |
| Distortion |
- {{ getCalibrationCoeffs()?.distCoeffs.data.map((it) => parseFloat(it.toFixed(3))) || [] }} |
+
+ {{
+ useCameraSettingsStore()
+ .getCalibrationCoeffs(props.videoFormat.resolution)
+ ?.distCoeffs.data.map((it) => parseFloat(it.toFixed(3))) || []
+ }}
+ |
| Mean Err |