Files
PhotonVision/chameleon-client/src/components/ThresholdTab.vue
2019-04-20 22:49:44 +03:00

36 lines
867 B
Vue

<template>
<div id="Threshold">
<chrange class="spacing" title="Hue" Xkey="hue"></chrange>
<chrange class="spacing" title="Saturation" Xkey="saturation"></chrange>
<chrange class="spacing" title="Value" Xkey="value"></chrange>
<chswitch class="spacing" title="Erode" Xkey="erode"></chswitch>
<chswitch class="spacing" title="Dilate" Xkey="dilate"></chswitch>
</div>
</template>
<script>
import chrange from './ch-range.vue'
import chselect from './ch-select.vue'
import chswitch from './ch-switch.vue'
export default {
name: 'Threshold',
data () {
return {
}
},
components:{
chrange,
chselect,
chswitch
},
methods:{
}
}
</script>
<style scoped>
.spacing{
margin-top: 20px;
}
</style>