ayoolaolafenwa / PixelLib

Visit PixelLib's official documentation https://pixellib.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PIL.Image AttributeError

mfonekpo opened this issue · comments

There is an error message whenever I run this code:

from pixellib.torchbackend.instance import instanceSegmentation

Indicating that there is an AttributeError because the Image module from the PIL (Pillow) library does not have an attribute LINEAR. It suggests using BILINEAR instead, which is a correct attribute and represents a resampling filter for resizing images.

The fix to this is to change the interp=Image.LINEAR to interp=Image.BILINEAR in line 46 col 65 in the transform.py file.

Came across this error today, fix suggested above works for me as well.