所以我几天前就开始编程了,我遇到了这个问题:BoundField
。我不知道出了什么问题。
AttributeError: 'NoneType' object has no attribute 'tostring'
答案 0 :(得分:0)
某些帧可能无法正确返回,因此image
变量为空,因此为NoneType
,即它没有类型。
使用image.shape
检查图像的形状。
您还可以使用type(variable)
检查Python中任何变量的类型。
if image.shape[0]==0 or image.shape[1]==0:
continue #or do something else to handle this