AttributeError: module 'matplotlib.pyplot' has no attribute 'imresize'
时间: 2023-11-05 12:57:26 浏览: 196
Python在Geany中调用matplotlib绘图时出现attributeerror错误
AttributeError: module 'matplotlib.pyplot' has no attribute 'imresize'是由于matplotlib库中的pyplot模块不再包含imresize函数引起的。您可以使用PIL库中的Image模块来替代imresize函数。以下是解决问题的代码:
```python
from PIL import Image
image = matplotlib.pyplot.imread(fname)
my_image = np.array(Image.fromarray(image).resize(size=(64, 64)))
```
阅读全文