當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。