TypeError:' NoneType'对象没有属性' __ getitem__15'

时间:2014-04-06 19:01:58

标签: python

你好,我想要运行camshift算法,但在运行时会产生错误。错误是:

Traceback (most recent call last):
File "C:\Python27\code\extra algorithms\Camshift in OpenCV.py", line 11, in <module>
roi = frame[r:r+h, c:c+w] TypeError: 'NoneType' object has no attribute '__getitem__10'

`

1 个答案:

答案 0 :(得分:1)

可能frame是无。因此,您无法像在frame[r:r+h, c:c+w]中那样对其进行索引。你应该初始化变量或处理无效的情况。