欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python实现图片二值化及灰度处理方式

时间:2022-05-26 08:23:51|栏目:Python代码|点击:

我就废话不多说了,直接上代码吧!

集成环境:win10 pycharm


#!/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爬虫设置ip代理过程解析

栏    目:Python代码

下一篇:使用Django实现商城验证码模块的方法

本文标题:python实现图片二值化及灰度处理方式

本文地址:http://www.codeinn.net/misctech/202921.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有