使用Pillow时遇到此错误

时间:2017-11-29 12:40:31

标签: python image-processing python-imaging-library

我正在使用Pillow(4.3.0)来执行图像量化。当我在PIL中运行图像量化功能时,我收到此错误说 ValueError:此方法所需的依赖项未在编译时启用

这是我的代码的MWE

     from PIL import Image
     import numpy as np
     I = Image.open('test.jpeg')
     Q = Image.Image.quantize(I, colors = 64,method = 3, kmeans = 0, palette = None)

我是RGB图像(32x32x3)。我正在使用Elementary OS。如何排除此错误?

0 个答案:

没有答案