PIL.Image使用Matplotlib imread()关闭错误

时间:2017-12-19 17:48:15

标签: python matplotlib pillow

我正在使用matplotlib.pyplot库中的imread(),因为我想在图像上绘制散点图:

import matplotlib.pyplot as plt
import logging

logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
model_image = plt.imread('data/img1.jpg')

一切正常。但是,当我使用标准python lib的记录器时,它会输出一个DEBUG错误:

DEBUG:PIL.Image:Error closing: 'NoneType' object has no attribute 'close'

这困扰我。我做错了什么,我们是matplotlib的错吗?

FYI matplotlib版本:2.1.0

0 个答案:

没有答案