本篇文章為大家展示了使用python3怎么提高識(shí)別圖片驗(yàn)證碼實(shí)現(xiàn)一個(gè)自動(dòng)登錄功能,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1、selenium的webdriver
2、tesserocr或者pytesseract進(jìn)行圖像識(shí)別
3、pillow的Image進(jìn)行圖片處理
from selenium import webdriver import tesserocr from PIL import Image
tesserocr的安裝.
def get_code_image(file_name): driver.save_screenshot(file_name) # 截取整個(gè)屏幕并保存 code_element = driver.find_element_by_class_name("verify_code_img___1Mei_") # 定位到驗(yàn)證碼元素 left = code_element.location['x'] # 定位到截圖位置 top = code_element.location['y'] right = code_element.size['width'] + left bottom = code_element.size['height'] + top im = Image.open(file_name) # 從文件讀取截圖,截取驗(yàn)證碼位置再次保存 img = im.crop((left, top, right, bottom)) img.save(file_name) return file_name
def get_code_image(file_name): code_element = driver.find_element_by_class_name("verify_code_img___1Mei_") # 定位到驗(yàn)證碼元素 code_element.screenshot(file_name)
注:此方法截圖時(shí)屏幕會(huì)閃動(dòng),可能引發(fā)bug,如下圖,目前沒(méi)有解決
def deal_code_image(file_name): image = Image.open(file_name) # image.show() #查看處理前的圖片 # 處理圖片去除干擾 # 將圖片轉(zhuǎn)化為灰度圖像 image = image.convert('L') threshold = 90 # 設(shè)置臨界值,臨界值可調(diào)試 table = [] for i in range(256): if i < threshold: table.append(0) else: table.append(1) image = image.point(table, '1') # image.show() #查看處理后的圖片 # 1:使用tesseract庫(kù)識(shí)別圖片中的驗(yàn)證碼 # res = tesserocr.image_to_text(image) # 2:使用pytesseract庫(kù)識(shí)別圖片中的驗(yàn)證碼 res = pytesseract.image_to_string(image) # print(res) #查看識(shí)別出來(lái)的文案 res = res.replace(" ", "") #去除結(jié)果中的空格 return res
處理前的圖片,有干擾,無(wú)法識(shí)別
處理后的圖片,基本可以識(shí)別
上述內(nèi)容就是使用python3怎么提高識(shí)別圖片驗(yàn)證碼實(shí)現(xiàn)一個(gè)自動(dòng)登錄功能,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
新聞名稱(chēng):使用python3怎么提高識(shí)別圖片驗(yàn)證碼實(shí)現(xiàn)一個(gè)自動(dòng)登錄功能-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)URL:http://jinyejixie.com/article34/jgspe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、云服務(wù)器、全網(wǎng)營(yíng)銷(xiāo)推廣、商城網(wǎng)站、響應(yīng)式網(wǎng)站、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容