我想在 PySpin Library Python 中使用 for 循环访问不同的模块。例如,要更改相机的曝光时间和帧速率的值,可以使用 camera.ExposureTime.SetValue(1000) 和 camera.AcquisitionFrameRate.SetValue(5)。主要思想是使用数组替换这些值.
try:
result = True
cam.ExposureAuto.SetValue(PySpin.ExposureAuto_Off)
for i in item:
if i[1] is not None:
if cam.i[0].GetAccessMode() != PySpin.RW:
return {"message": "Unable to set {i[0]}"}
cam.i[0].SetValue[i[1]]
在这种情况下,我收到以下错误: TypeError: 'CameraPtr' object is not subscriptable
有人可以帮忙吗?非常感谢 !!!