2019-03-14 22:48:25 +02:00
|
|
|
<template>
|
2019-03-24 21:01:25 +03:00
|
|
|
<div id="Threshold">
|
2019-03-27 23:23:01 +02:00
|
|
|
<chrange class="spacing" title="Hue" Xkey="hue"></chrange>
|
|
|
|
|
<chrange class="spacing" title="Saturation" Xkey="saturation"></chrange>
|
|
|
|
|
<chrange class="spacing" title="Value" Xkey="value"></chrange>
|
2019-04-20 22:49:44 +03:00
|
|
|
<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'
|
2019-04-20 22:49:44 +03:00
|
|
|
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,
|
2019-04-20 22:49:44 +03:00
|
|
|
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>
|
2019-03-24 22:11:29 +02:00
|
|
|
.spacing{
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
2019-03-14 22:48:25 +02:00
|
|
|
</style>
|