rows, cols = image.shape[:3] AttributeError: 'NoneType' object has no attribute 'shape'
时间: 2023-04-01 07:04:38 浏览: 251
python报错: 'list' object has no attribute 'shape'的解决
5星 · 资源好评率100%
这个错误提示表明 image 变量是 NoneType 类型,没有 shape 属性。可能是因为 image 变量没有被正确地初始化或赋值导致的。需要检查代码中对 image 变量的操作,确保其被正确地初始化或赋值。
阅读全文