Add CSM steps to new calibration wizard.
This commit is contained in:
parent
0ebc507eff
commit
5860b9be97
9 changed files with 194 additions and 15 deletions
|
|
@ -0,0 +1,39 @@
|
|||
<template>
|
||||
<stepTemplateWithStream>
|
||||
<p>
|
||||
<b>Once you're ready, click Auto-Calibrate Using Camera.</b>
|
||||
</p>
|
||||
<template #below-stream>
|
||||
<div class="action-button-container">
|
||||
<CSMCalibrationSettings :show-extra-settings="false" />
|
||||
</div>
|
||||
</template>
|
||||
</stepTemplateWithStream>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import stepTemplateWithStream from "../stepTemplateWithStream.vue"
|
||||
import CSMCalibrationSettings from "../../../tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue";
|
||||
|
||||
export default {
|
||||
name: "cameraMainCalibrationStep",
|
||||
|
||||
components: {
|
||||
stepTemplateWithStream,
|
||||
CSMCalibrationSettings
|
||||
},
|
||||
|
||||
computed: {
|
||||
cameraUri: function() {
|
||||
return `${this.$store.getters.baseUri}/camera/`;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.action-button-container {
|
||||
padding: 4px;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue