你好,我想要运行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'
`
答案 0 :(得分:1)
可能frame
是无。因此,您无法像在frame[r:r+h, c:c+w]
中那样对其进行索引。你应该初始化变量或处理无效的情况。