Merge remote-tracking branch 'origin/master'

This commit is contained in:
Sagi Frimer
2019-03-26 21:58:37 +02:00
9 changed files with 74 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
from ChameleonPipeLine import ChameleonPipeline
class ChameleonCamera:
def __init__(self, dic):
self.pipelines = []
for pipeline in dic["pipelines"]:
self.pipelines.append(ChameleonPipeline(pipeline))