bug fixes in ui and bug fixes in sever handler

-- updated pom
This commit is contained in:
ori agranat
2019-11-27 21:46:07 +02:00
parent ca7f15aeb7
commit e195cce026
5 changed files with 16 additions and 59 deletions

View File

@@ -20,7 +20,7 @@ export default new Vuex.Store({
pipeline: {
exposure: 0,
brightness: 0,
orientation: 0,
flipMode: 0,
hue: [0, 15],
saturation: [0, 15],
value: [0, 25],

View File

@@ -2,7 +2,7 @@
<div>
<CVslider name="Exposure" v-model="value.exposure" :min="0" :max="100" @input="handleData('exposure')"/>
<CVslider name="Brightness" v-model="value.brightness" :min="0" :max="100" @input="handleData('brightness')"/>
<CVselect name="Orientation" v-model="value.orientation" :list="['Normal','Inverted']"
<CVselect name="Orientation" v-model="value.flipMode" :list="['Normal','Inverted']"
@input="handleData('orientation')"/>
</div>
</template>