mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-27 02:01:40 +00:00
36 lines
867 B
Vue
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> |