解决opencv中AttributeError: ‘NoneType‘ object has no attribute ‘copy‘问题

先把问题图摆上来    后面会划分出一个分类来专门收集自己遇到的bug

解决opencv中AttributeError: ‘NoneType‘ object has no attribute ‘copy‘问题_第1张图片

问题:

AttributeError: 'NoneType' object has no attribute 'copy'

考虑:

问题在代码一开始的问题出现了 说明在我代码cv2.imread()中读取图像失败,得到的是None类型的变量

解决:

①检查图片路径是否写对

②检查图片命名或路径中是否有中文

③更改路径 将绝对路径和相对路径调整一下 多试试

④路径的斜杠要表达正确

你可能感兴趣的:(opencv)