获取AttributeError:模块'matplotlib._image'在python3中没有属性'frombyte'

时间:2017-05-05 16:13:52

标签: python-3.x matplotlib

我正在尝试执行一段简单的代码片段,如下所示:

import matplotlib.pyplot as plt
image = caffe.io.load_image(root + 'images/cat.jpg')
transformed_image = transformer.preprocess('data', image)
plt.imshow(image)

当代码到达plt.imshow时,我遇到以下错误:

AttributeError: module 'matplotlib._image' has no attribute 'frombyte'
<matplotlib.figure.Figure at 0x1bd2ac8ac18>

这里有什么问题?

1 个答案:

答案 0 :(得分:0)

升级到最新版本的matplotlib,问题解决了。