2019-03-26 22:51:48 +02:00
|
|
|
from .ChameleonPipeLine import ChameleonPipeline
|
2019-03-26 21:58:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ChameleonCamera:
|
|
|
|
|
|
|
|
|
|
def __init__(self, dic):
|
|
|
|
|
self.pipelines = []
|
|
|
|
|
|
|
|
|
|
for pipeline in dic["pipelines"]:
|
|
|
|
|
self.pipelines.append(ChameleonPipeline(pipeline))
|
|
|
|
|
|