TypeError: read() got an unexpected keyword argument 'flatten'
时间: 2023-10-07 12:04:53 浏览: 364
Error Encountered an improper argument
TypeError: read() got an unexpected keyword argument 'flatten' 这个错误是由于在调用read()函数时传入了不期望的关键字参数'flatten'。根据引用提供的信息,该错误可能是因为scikit-image的版本问题。从0.17.2版本开始,参数名称已更改为'as_gray',而不再使用'flatten'。因此,你需要将代码中的'flatten'参数更改为'as_gray',以解决这个错误。
阅读全文