使用python如何做图像识别 利用python做图像识别

主机教程 建站分享 2年前 (2022-12-05) 193次浏览

文章摘要:使用python如何做图像识别 利用python做图像识别

在python中使用pytesseract模块实现一个图像识别,具体方法如下: import pytesser […]

在python中使用pytesseract模块实现一个图像识别,具体方法如下:

import pytesseract #导入pytesseract模块

from PIL import Image

class GetImageDate(object):

def m(self):

image = Image.open(u"a.png")

text = pytesseract.image_to_string(image)

return text

def SaveResultToDocument(self):

text = self.m()

f = open(u"Verification.txt","w")

print text

f.write(str(text))

f.close()

g = GetImageDate()

g.SaveResultToDocument()


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:使用python如何做图像识别 利用python做图像识别
文章链接:http://www.7966.org/post/13642.html
转载请注明出处

喜欢 (0)