环境:
python3.6.4
opencv3.4.1.15
运行目标跟踪object_tracking文件夹中的mean函数时报错且不显示视频结果
Traceback (most recent call last):
File "F:\pycharm_python\projects\project_python_test\object_tracking\main.py", line 15, in <module>
height, width, _ = frame.shape
AttributeError: 'NoneType' object has no attribute 'shape'
查找原因基本上看见三个
1.图片不存在(路径不存在, 路径包含中文无法识别) 2.读取的图片内容和默认读取时参数匹配不匹配。(默认读取的是3通道的彩色图)例如读取到的图片是灰度图,就会返回None。3.也可能是路径中有中文(59条消息) AttributeError: 'NoneType' object has no attribute 'shape'_旅人_Eric的博客-CSDN博客文章来源:https://www.toymoban.com/news/detail-426412.html
自己分析了一下,肯因为程序中是相对路径,文章来源地址https://www.toymoban.com/news/detail-426412.html
cap =cv2.VideoCapture("highway.mp
到了这里,关于报错AttributeError: ‘NoneType‘ object has no attribute ‘shape‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!