Add camera calibration steps into refactored calibration wizard.
This commit is contained in:
parent
8f1253ec02
commit
0ebc507eff
10 changed files with 186 additions and 32 deletions
|
|
@ -0,0 +1,27 @@
|
|||
<template>
|
||||
<div>
|
||||
<slot></slot>
|
||||
<miniStreamDisplay class="mini-preview" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import miniStreamDisplay from "../../genericComponents/miniStreamDisplay.vue";
|
||||
|
||||
export default {
|
||||
name: "stepTemplateWithStream",
|
||||
|
||||
components: {
|
||||
miniStreamDisplay
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.mini-preview {
|
||||
width: 75%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue