国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Python > 正文

Python編程實(shí)現(xiàn)的圖片識(shí)別功能示例

2019-11-25 15:58:04
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例講述了Python編程實(shí)現(xiàn)的圖片識(shí)別功能。分享給大家供大家參考,具體如下:

1. 安裝PIL,官方?jīng)]有WIN64位,Pillow替代

pip install Pillow-2.7.0-cp27-none-win_amd64.whl

2. 安裝Pytesser

下載pytesser_v0.0.1.zip,解壓后復(fù)制進(jìn)Python27/Lib/site-packges/pytesser路徑下,無(wú)pytesser則新建

在Python27/Lib/site-packges/pytesser中新建一pytesser.pth文件,內(nèi)容為pytesser

在pytesser內(nèi),修改三點(diǎn)

① pytesser.py修改成__init.py__

② 修改pytesser.py

import Image

 改為

from PIL import Image

tesseract_exe_name = 'tesseract' 改為tesseract_exe_name = 'Python27//Lib//site-packges//pytesser//tesseract' 注意/轉(zhuǎn)義

③ 安裝Tesseract

下載Tesseract OCR engine:http://code.google.com/p/tesseract-ocr/

下載后解壓,找到tessdata文件夾,用其替換掉pytesser解壓后的tessdata文件夾即可。

不過(guò)除了測(cè)試用驗(yàn)證碼之外,其余的系統(tǒng)驗(yàn)證碼的識(shí)別率很低。

附測(cè)試代碼

from pytesser import *from PIL import Image, ImageEnhanceim = Image.open('D:/Python27/Lib/site-packages/pytesser/phototest.tif')im2 = Image.open(r'D:/Python27/Lib/site-packages/pytesser/fnord.tif','r')im3 = Image.open(r'F:/PROJECT/python/code/Study_1/src/20170424/cp.jpg','r') #文件讀寫(xiě)模式以防報(bào)錯(cuò)#圖片處理1::黑白處理enhancer = ImageEnhance.Contrast(im3)image2 = enhancer.enhance(5)image2.show()print image_to_string(image2)#圖片處理2: 降噪處理imgry = im3.convert('L')  #灰度處理#灰度處理基礎(chǔ)上二值化處理threshold = 140table = []for i in range(256):  if i < threshold:    table.append(0)  else:    table.append(1)out = imgry.point(table, '1')out.show()text = image_to_string(out)if text.isspace() :  print "FAILE"else:  print text#print text

更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python圖片操作技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python Socket編程技巧總結(jié)》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門(mén)與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總

希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 略阳县| 张家川| 陕西省| 西林县| 桂阳县| 霞浦县| 潜山县| 通化市| 留坝县| 惠水县| 龙胜| 正蓝旗| 宜良县| 共和县| 丹江口市| 永德县| 富平县| 措美县| 噶尔县| 延长县| 信宜市| 自治县| 平舆县| 正镶白旗| 浏阳市| 仁布县| 神池县| 梓潼县| 云浮市| 松原市| 寿光市| 柳河县| 桦川县| 靖远县| 河北省| 博客| 新乡市| 忻州市| 佛学| 通渭县| 丰城市|