大三角帆返回的曝光时间不喜欢算术运算

spinnaker returned exposure time not liking an arithmetic operation

我正在使用 PySpin / python spinnaker (Flir camera SDK) 的包装器。

有一个cam.ExposureTime.GetValue()方法可以获取相机的当前曝光时间。我可以这样使用它:

print("Exposure time set to %.2f µs." % cam.ExposureTime.GetValue())

这工作正常并以微秒为单位打印曝光时间。

接下来,我想以毫秒为单位显示时间,所以我执行了以下操作:

print("Exposure time set to %.2f ms." % float(cam.ExposureTime.GetValue())/1000)

Python不喜欢!我得到一个错误:

TypeError: unsupported operand type(s) for /: 'str' and 'int'

float('12.67')/10这样的简单语句运行没有任何问题。不确定出了什么问题。

我认为问题是由于 print 语句中 PySpin 返回值的算术运算引起的。我在 print 语句之前移动了操作,并通过问题解决了。

我简单地使用了:

exp_time = float(cam.ExposureTime.GetValue())/1000
print("Exposure time set to %.2f ms." % exp_time )