问答题

下面程度对图片进行滤波,请完善程序
from PIL import Image,ImageFilter
i1=Image.open('lena.png')
i2=i1.______(ImageFilter.CONTOUR)
i2.show()

【参考答案】

filter