Files
sf-op/script/test/CamtoolTest.py
2017-03-22 16:21:51 +01:00

13 lines
333 B
Python

c = {"reference_marker":[0, 0, 100, 100]}
camtool.setCalibration("SLG-LCAM-C021", c)
camtool.getGeometry("SINEG01-DSCR350")
for c in camtool.getCameras():
if c not in ["example", "simulation"]:
try:
print c , " - ", camtool.getGeometry(c)
except:
print c
time.sleep(0.2)