【30日挑战】第九日:图片黑白化

很晚了,因为最近很忙。所以并没有很多时间更新。但是不能懒惰。

正文:在通常的图片处理中,我们并不需要图片的颜色。所以,为了方便处理。遂将图片进行黑白化,进而二值化或者其他处理。

环境:windows10+Python3.6+spyder

用PIL 模块处理

from PIL import Image
image_file = Image.open(“convert_image.png”) # open colour image
image_file = image_file.convert(‘1’) # convert image to black and white
image_file.save(‘result.png’)

github:https://github.com/Pidbid/30-Days-Coding


【30日挑战】第九日:图片黑白化
https://www.wicos.me/jishu/429/
作者
Wicos
发布于
2018年3月16日
许可协议