mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-22 01:11:40 +00:00
12 lines
238 B
Python
12 lines
238 B
Python
from ChameleonPipeLine import ChameleonPipeline
|
|
|
|
|
|
class ChameleonCamera:
|
|
|
|
def __init__(self, dic):
|
|
self.pipelines = []
|
|
|
|
for pipeline in dic["pipelines"]:
|
|
self.pipelines.append(ChameleonPipeline(pipeline))
|
|
|