AttributeError: module 'cv2' has no attribute 'destroyWindows'
时间: 2023-10-30 21:00:58 浏览: 247
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
引用:在你提供的代码中,报错信息是"AttributeError: module 'cv2' has no attribute 'destroyAllWindows'"。这个错误意味着cv2模块没有destroyAllWindows这个属性。有可能是你拼写错误,正确的是destroyAllWindows而不是destoryAllWindows。请检查你的拼写并修正它。
另外,你提到了一个关于scipy.misc模块的错误,错误信息是"AttributeError: module ‘scipy.misc’ has no attribute ‘imread’"和"AttributeError: module ‘scipy.misc’ has no attribute ‘imresize’"。这个错误意味着scipy.misc模块没有imread和imresize这两个属性。这是因为在较新的scipy版本中,这些属性已被移除。你可以使用其他函数或方法来替代这些属性。
如果你遇到了其他类似的错误,我建议你检查你的代码中所使用的模块和属性是否正确,并确认你的模块版本是否兼容。如果问题仍然存在,可以尝试搜索相关的错误解决方法,或者在开发者社区中咨询。
阅读全文