热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

#!usrbinenvpython3.5.2#-*-coding:utf-8-*-4图片灰度调整及二值化:集成环境:win10python3Pyc

#!/usr/bin/env python3.5.2

# -*- coding: utf-8 -*-

'''4图片灰度调整及二值化:

集成环境:win10 python3 Pycharm

'''

from PIL import Image

# load a color image

im = Image.open('picturehaha.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

table.append(0)

else:

table.append(1)

# convert to binary image by the table

bim = Lim.point(table, '1' )

bim.save('picf.png' )



推荐阅读
author-avatar
书友53537817
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有