module 'scipy.misc' has no attribute 'imresize' 报错信息解决方法!

**module ‘scipy.misc’ has no attribute ‘imresize’**属性报错,目前有两种解决方案:

  • 更改安装 scipy 的版本,根据报错信息显示,scipy 在1.2.1版本之后,imresize方法已经被弃用,因此卸载现有版本的 scipy,安装低版本的 scipy,经测试,scipy==1.2.1 就可以,并且需要对应的 PIllow==6.0.0

报错信息:

Snipaste_2020-01-29_23-52-35.jpg

安装 scipyPillow 基本情况:

module 'scipy.misc' has no attribute 'imresize' 报错信息解决方法!_第1张图片

Snipaste_2020-01-29_22-54-18.jpg

给予参考的配置:

  • scipy ==1.2.1;
  • Pillow ==6.0.0;

  • 第二种方法,找到一种方法来替换 ascipy.misc.imresize() ,根据提示信息,利用 np.array(Image.fromarray(arr).astype(int)).resize() 代替 **scipy.misc.imresize(arr)**方法:

    Snipaste_2020-01-29_23-52-35.jpg

    例如:

    #利用 scipy 进行resize() 
    new_image = scipy.misc.imresize(old_image, 0.99999, interp = 'cubic')
    
    #利用 Image;
    
    im = Image.fromarray(old_image)
    size = tuple((np.array(im.size) * 0.99999).astype(int))
    new_image = np.array(im.resize(size, PIL.Image.BICUBIC))
    

参考链接:

Alternative to scipy.misc.imresize()

你可能感兴趣的:(error,解决方法)