mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-03 03:01:40 +00:00
added selction of threshold and normal images
This commit is contained in:
@@ -33,7 +33,8 @@ export const store = new Vuex.Store({
|
||||
gateWay:0,
|
||||
hostName:"",
|
||||
//live info
|
||||
streamAdress:("http://"+location.hostname + ":1181/?stream")
|
||||
streamAdress:("http://"+location.hostname + ":1181/?stream"),
|
||||
isBinaryImage:0
|
||||
|
||||
},
|
||||
mutations:{
|
||||
@@ -59,7 +60,8 @@ export const store = new Vuex.Store({
|
||||
ip: set('ip'),
|
||||
gateWay : set('gateWay'),
|
||||
hostName : set('hostName'),
|
||||
streamAdress : set('streamAdress')
|
||||
streamAdress : set('streamAdress'),
|
||||
isBinaryImage: set('isBinaryImage')
|
||||
},
|
||||
getters:{
|
||||
camera: state => state.camera,
|
||||
@@ -81,7 +83,8 @@ export const store = new Vuex.Store({
|
||||
ip: state => state.ip,
|
||||
gateWay: state => state.gateWay,
|
||||
hostName: state => state.hostName,
|
||||
streamAdress: state => state.streamAdress
|
||||
streamAdress: state => state.streamAdress,
|
||||
isBinaryImage: state => state.isBinaryImage
|
||||
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user