只需简单的对比度和饱和度增强。 没什么好看的。
答案 0 :(得分:20)
由于PIL在很大程度上已经死亡。改为安装枕头,sudo pip install pillow
,并使用其ImageEnhance模块http://pillow.readthedocs.org/en/3.0.x/reference/ImageEnhance.html
>>> from PIL import Image, ImageEnhance
>>> image = Image.open('downloads/jcfeb2011.jpg')
>>> contrast = ImageEnhance.Contrast(image)
>>> image.show()
>>> contrast.enhance(2).show()