为什么'_io.BufferedRandom'对象没有属性'resize'

时间:2019-04-05 10:17:48

标签: python python-imaging-library google-colaboratory attributeerror

我正在使用PIL,并且收到以下错误消息:

AttributeError: '_io.BufferedRandom' object has no attribute 'resize'

我的代码:

def phash(img):
    img = img.resize((8, 8), Image.ANTIALIAS).convert('L')
    avg = reduce(lambda x, y: x + y, img.getdata()) / 64.
    return reduce(
        lambda x, y, z: x | (z << y),
        enumerate(map(lambda i: 0 if i < avg else 1, img.getdata())),
        0
    )

1 个答案:

答案 0 :(得分:0)

您共享的代码仅包含函数的定义,我认为问题出在主代码中。
您收到的错误消息表明您要调整大小的对象不具有此功能,并且由于该,我认为您在使用命令open('path/to/image.png')时意外加载了图像您需要使用命令Image.open('path/to/image.png')将其作为“图片”对象加载。

尝试编写如下内容:

from PIL import Image
from functools import reduce


def phash(img):
    pass # your function here

path = 'path/to/image.png'
image = Image.open(path)
phash = phash(image)