2020
09-23
09-23
Python图像处理库PIL的ImageFilter模块使用介绍
ImageFilter模块提供了滤波器相关定义;这些滤波器主要用于Image类的filter()方法。一、ImageFilter模块所支持的滤波器当前的PIL版本中ImageFilter模块支持十种滤波器:1、 BLURImageFilter.BLUR为模糊滤波,处理之后的图像会整体变得模糊。例子:>>>fromPILimportImageFilter>>>im02=Image.open("D:\\Code\\Python\\test\\img\\test02.jpg")>>>im=im02.filter(ImageFilter.BLUR)图像im02为原始图像,如下: &n...
继续阅读 >