Settings and Cameras read and save

This commit is contained in:
Sagi Frimer
2019-03-31 22:24:10 +03:00
parent 557f6a109f
commit abc63661c9
12 changed files with 90 additions and 46 deletions

View File

@@ -1,10 +0,0 @@
from .ChameleonPipeLine import ChameleonPipeline
class ChameleonCamera:
def __init__(self, dic):
self.pipelines = {}
for pipeline_id in dic:
self.pipelines[pipeline_id] = ChameleonPipeline(dic[pipeline_id])

View File

@@ -1,7 +0,0 @@
class ChameleonPipeline:
def __init__(self, dic):
self.exposure = dic["exposure"]
self.brightness = dic["brightness"]