python中用Pillow库进行图片处理

Posted shinawear--

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中用Pillow库进行图片处理相关的知识,希望对你有一定的参考价值。

PIL:PIL.Image.open

 

PIL即Python Imaging Library,也即为我们所称的Pillow,是一个很流行的图像库,它比opencv更为轻巧,正因如此,它深受大众的喜爱。

一、图片读取

PIL读进来的图像是一个对象,而不是我们所熟知的numpy 矩阵。

from PIL import Image
img = Image.open(\'呆头鸟.jpg\')
print(img.format) 
print(img.size) #注意,省略了通道 (w,h)
print(img.mode) #L为灰度图,RGB为真彩色,RGBA为加了透明通道
img.show() # 显示图片

显示效果:

 

二、灰度的调整

from PIL import Image
img = Image.open(\'呆头鸟.jpg\')
gray = Image.open(\'呆头鸟.jpg\').convert(\'L\')
gray.show()

 

 

以上是关于python中用Pillow库进行图片处理的主要内容,如果未能解决你的问题,请参考以下文章

Python图像处理库Pillow常用使用方法

Pillow库进行图像文件处理(配图详解)

Python图像处理库:Pillow 初级教程

python图像处理模块Pillow的学习

python库pillow:实现生成图片并加水印

图像识别的前期工作——使用pillow进行图像处理