ayoolaolafenwa / PixelLib

Visit PixelLib's official documentation https://pixellib.readthedocs.io/en/latest/
MIT License
1.05k stars 264 forks source link

PIL.Image AttributeError #176

Open mfonekpo opened 1 year ago

mfonekpo commented 1 year ago

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.

grant-oscillolabs commented 1 year ago

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