Files
PhotonVision/chameleon-client/src/components/ThresholdTab.vue

36 lines
912 B
Vue
Raw Normal View History

2019-03-14 22:48:25 +02:00
<template>
2019-03-24 21:01:25 +03:00
<div id="Threshold">
2019-07-19 01:40:06 -07:00
<chrange class="spacing" title="Hue" Xkey="hue" :maximum="180"></chrange>
<chrange class="spacing" title="Saturation" Xkey="saturation" :maximum="255"></chrange>
<chrange class="spacing" title="Value" Xkey="value" :maximum="255"></chrange>
<chswitch class="spacing" title="Erode" Xkey="erode"></chswitch>
<chswitch class="spacing" title="Dilate" Xkey="dilate"></chswitch>
2019-03-14 22:48:25 +02:00
</div>
</template>
<script>
2019-03-24 21:01:25 +03:00
import chrange from './ch-range.vue'
import chselect from './ch-select.vue'
import chswitch from './ch-switch.vue'
2019-03-14 22:48:25 +02:00
export default {
2019-03-24 21:01:25 +03:00
name: 'Threshold',
2019-03-14 22:48:25 +02:00
data () {
return {
}
2019-03-24 21:01:25 +03:00
},
components:{
chrange,
chselect,
chswitch
2019-03-26 22:28:58 +02:00
},
methods:{
2019-03-14 22:48:25 +02:00
}
}
2019-03-24 21:01:25 +03:00
2019-03-14 22:48:25 +02:00
</script>
<style scoped>
.spacing{
margin-top: 20px;
}
2019-03-14 22:48:25 +02:00
</style>