栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python实现迭代阈值法

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python实现迭代阈值法

import matplotlib.pylab as plt
plt.rcParams['font.sans-serif']=['SimHei']
plt.rcParams['axes.unicode_minus']=False

def Read_raw(filename,w,h,m):
    #初始化image
    image=[]
    for i in range(m*h):
        image.append([])
        for j in range(w):
            image[i].append(255)
    #读取raw
    with open(filename,'rb') as f:
        data=f.read()
    #写入raw
    for i in range(m*h):
        for j in range(w):
            image[i][j]=data[i*w+j]
    print('读取文件{0}成功'.format(filename))
    return image

def Write_raw(filename,image):
    #将数组image转为bytes
    bt=bytearray()
    for i in range(len(image)):
        for j in range(len(image[i])):
            bt.append(image[i][j])
    #写入raw
    with open(filename,'wb') as f:
        f.write(bt)
    f.close()
    print('写入文件{0}成功'.format(filename))

def iteration(image):
    def itera(image,T):
        T1=[]
        T2=[]
        for i in range(len(image)):
                for j in range(len(image[i])):
                    if image[i][j]=T:
                        T2.append(image[i][j])
        u1=sum(T1)/len(T1)
        u2=sum(T2)/len(T2)
        return u1,u2
                
    T1=255/2
    T0=0.01
    while True:
        u1,u2=itera(image,T1)
        T2=(u1+u2)/2
        if (abs(T1-T2)/(max(T1,T2))
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/341829.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号