解决opencv:AttributeError: 'NoneType' object has no attribute 'copy'
情况一: 路径中有中文,更改即可
情况二:可以运行代码,在运行结束时显示
AttributeError: 'NoneType' object has no attribute 'copy'
因为如果是视频处理,视频最后一帧的结果是None,不信可以自己print观察,所以None再copy当然会出错
注:
其他有博客说用深拷贝,我认为不行;本身就是不行让在父对象上的处理影响子对象,深拷贝明显不行
路径有中文常常也不会这样报错
参考:https://answers.opencv.org/question/198039/attributeerror-nonetype-object-has-no-attribute-copy/
Talk is cheap. Show me the code