added contour tab and more filters to threshold

This commit is contained in:
ori agranat
2019-04-20 22:49:44 +03:00
parent 71489d1835
commit d5a0cb00fa
4 changed files with 86 additions and 5 deletions

View File

@@ -3,12 +3,15 @@
<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 () {
@@ -17,7 +20,8 @@ import chselect from './ch-select.vue'
},
components:{
chrange,
chselect
chselect,
chswitch
},
methods:{
}