diff --git a/photon-client/src/components/cameras/CameraCalibrationCard.vue b/photon-client/src/components/cameras/CameraCalibrationCard.vue index abcf8cba35..2a0bf7f3ae 100644 --- a/photon-client/src/components/cameras/CameraCalibrationCard.vue +++ b/photon-client/src/components/cameras/CameraCalibrationCard.vue @@ -216,39 +216,41 @@ const setSelectedVideoFormat = (format: VideoFormat) => {
Camera Calibration - - Current Calibration - - - - Resolution - Mean Error - Horizontal FOV - Vertical FOV - Diagonal FOV - Info - - - - - {{ getResolutionString(value.resolution) }} - - {{ value.mean !== undefined ? (isNaN(value.mean) ? "Unknown" : value.mean.toFixed(2) + "px") : "-" }} - - {{ value.horizontalFOV !== undefined ? value.horizontalFOV.toFixed(2) + "°" : "-" }} - {{ value.verticalFOV !== undefined ? value.verticalFOV.toFixed(2) + "°" : "-" }} - {{ value.diagonalFOV !== undefined ? value.diagonalFOV.toFixed(2) + "°" : "-" }} - - - Click for more info on this calibration. - - - - + +
+ Current Calibration + + + + Resolution + Mean Error + Horizontal FOV + Vertical FOV + Diagonal FOV + Info + + + + + {{ getResolutionString(value.resolution) }} + + {{ value.mean !== undefined ? (isNaN(value.mean) ? "Unknown" : value.mean.toFixed(2) + "px") : "-" }} + + {{ value.horizontalFOV !== undefined ? value.horizontalFOV.toFixed(2) + "°" : "-" }} + {{ value.verticalFOV !== undefined ? value.verticalFOV.toFixed(2) + "°" : "-" }} + {{ value.diagonalFOV !== undefined ? value.diagonalFOV.toFixed(2) + "°" : "-" }} + + + Click for more info on this calibration. + + + + +
Configure New Calibration