当前位置: 首页>>代码示例>>Python>>正文


Python Img.show方法代码示例

本文整理汇总了Python中Img.show方法的典型用法代码示例。如果您正苦于以下问题:Python Img.show方法的具体用法?Python Img.show怎么用?Python Img.show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Img的用法示例。


在下文中一共展示了Img.show方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: train2

# 需要导入模块: import Img [as 别名]
# 或者: from Img import show [as 别名]
def train2():
    for i in range(10):
        try:
            os.mkdir(fontpath)
        except:
            print(fontpath+" exist!")
        download_image("http://jwxt.bupt.edu.cn/validateCodeAction.do?random=")
        img=Img(fname="vcode.jpg")
        img.binary()
        img.save("tempBinary.jpg")
        img.show()
        images=img.divide()
        random.randint(1,100)
        for i in images:
            result=i.recognise()
            print("hello:"+result)
            x=input()
            if x=="":   #如果上面识别结果没错,输入回车则保存特征值。否则随意输入其他字符,跳过
                f=open(fontpath+result+"-"+str(random.randint(1,100))+".txt","w+")
                f.write(i.get_feature())
                f.close()
开发者ID:Ncerzzk,项目名称:image-recognise,代码行数:23,代码来源:imgtest.py

示例2: train

# 需要导入模块: import Img [as 别名]
# 或者: from Img import show [as 别名]
def train():
    for i in range(10):
        try:
            os.mkdir(fontpath)
        except:
            print(fontpath+" exist!")
        download_image("http://jwxt.bupt.edu.cn/validateCodeAction.do?random=")
        img=Img(fname="vcode.jpg")
        img.binary()
        img.save("tempBinary.jpg")
        img.show()
        x=input()
        if x=="next":          #如果分割破坏严重或者二值化后图片花了,直接输入next跳过该图片,以免污染字库
            continue
        images=img.divide()

        random.randint(1,100)
        for s,i in zip(x,images):
            f=open(fontpath+s+"-"+str(random.randint(1,100))+".txt","w+")
            f.write(i.get_feature()) #将特征值保存
            f.close()
开发者ID:Ncerzzk,项目名称:image-recognise,代码行数:23,代码来源:imgtest.py


注:本文中的Img.show方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。