AttributeError: module 'cv2' has no attribute 'THRESH_BINARY_INY'
时间: 2024-08-12 20:01:38 浏览: 49
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
AttributeError: 'module' object has no attribute 'THRESH_BINARY_INY' 这是一个Python错误提示,通常在尝试访问OpenCV (cv2) 模块中不存在的属性时出现。`cv2.THRESH_BINARY_INY`看起来像是一个自定义的阈值处理方法,但实际上 OpenCV库并没有这个直接的常量名。可能是开发者误拼了,或者是API已经更新,该属性已经被替换或者不再推荐使用。
正确的做法应该是检查OpenCV文档以确认当前版本是否支持这个属性,或者查找是否有其他合适的阈值处理方法,如`cv2.threshold()`函数的其中一个常量,如`cv2.THRESH_BINARY`, `cv2.THRESH_BINARY_INV`, 等。
阅读全文