Add CSM steps to new calibration wizard.

This commit is contained in:
Julian Stirling 2025-10-22 23:29:04 +01:00
parent 0ebc507eff
commit 5860b9be97
9 changed files with 194 additions and 15 deletions

View file

@ -1,15 +1,17 @@
<template>
<stepTemplateWithStream>
<p>
<b>
<p>Once you're ready, click auto-calibrate.</p>
<cameraCalibrationSettings
:show-extra-settings="false"
:camera-uri="cameraUri"
></cameraCalibrationSettings>
</b>
<b>Once you're ready, click Full Auto-calibrate.</b>
</p>
<template #below-stream>
<div class="action-button-container">
<cameraCalibrationSettings
:show-extra-settings="false"
:camera-uri="cameraUri"
/>
</div>
</template>
</stepTemplateWithStream>
</template>
@ -32,3 +34,10 @@ export default {
}
}
</script>
<style scoped>
.action-button-container {
padding: 4px;
}
</style>