只是一个简单的对比度和饱和度增强。
没有什么花哨。

最佳答案

由于PIL在大多数情况下已死。改为安装Pillow fork 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()

python - 使用Python的PIL,如何增强图像的对比度/饱和度?-LMLPHP
>>> contrast.enhance(2).show()

python - 使用Python的PIL,如何增强图像的对比度/饱和度?-LMLPHP

09-25 20:47