38 lines
865 B
Vue
38 lines
865 B
Vue
<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>
|