python实现图片二值化及灰度处理方式
更新时间:2019年12月07日 16:33:31 作者:杰-Jie
今天小编就为大家分享一篇python实现图片二值化及灰度处理方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
我就废话不多说了,直接上代码吧!
集成环境:win10 pycharm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/usr/bin/env python3.5.2 # -*- coding: utf-8 -*- '''4图片灰度调整及二值化: 集成环境:win10 python3 Pycharm ''' from PIL import Image # load a color image im = Image. open ( 'picture\\haha.png' ) #当前目录创建picture文件夹 # convert to grey level image Lim = im.convert( 'L' ) Lim.save( 'pice.jpg' ) # setup a converting table with constant threshold threshold = 185 table = [] for i in range ( 256 ): if i < threshold: table.append( 0 ) else : table.append( 1 ) # convert to binary image by the table bim = Lim.point(table, '1' ) bim.save( 'picf.png' ) |
以上这篇python实现图片二值化及灰度处理方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!
最新评论