mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-02 02:51: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))
|
||
|
|
|