久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

使用 pytesseract OCR 識別圖像中的文本

Use pytesseract OCR to recognize text from an image(使用 pytesseract OCR 識別圖像中的文本)
本文介紹了使用 pytesseract OCR 識別圖像中的文本的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我需要使用 Pytesseract 從這張圖片中提取文字:

I need to use Pytesseract to extract text from this picture:

和代碼:

from PIL import Image, ImageEnhance, ImageFilter
import pytesseract
path = 'pic.gif'
img = Image.open(path)
img = img.convert('RGBA')
pix = img.load()
for y in range(img.size[1]):
    for x in range(img.size[0]):
        if pix[x, y][0] < 102 or pix[x, y][1] < 102 or pix[x, y][2] < 102:
            pix[x, y] = (0, 0, 0, 255)
        else:
            pix[x, y] = (255, 255, 255, 255)
img.save('temp.jpg')
text = pytesseract.image_to_string(Image.open('temp.jpg'))
# os.remove('temp.jpg')
print(text)

和temp.jpg"是

and the "temp.jpg" is

還不錯,但是打印的結果是,2 WW不是正確的文本2HHH,那我怎樣才能去除那些黑點呢?

Not bad, but the result of print is ,2 WW Not the right text2HHH, so how can I remove those black dots?

推薦答案

這是我的解決方案:

import pytesseract
from PIL import Image, ImageEnhance, ImageFilter

im = Image.open("temp.jpg") # the second one 
im = im.filter(ImageFilter.MedianFilter())
enhancer = ImageEnhance.Contrast(im)
im = enhancer.enhance(2)
im = im.convert('1')
im.save('temp2.jpg')
text = pytesseract.image_to_string(Image.open('temp2.jpg'))
print(text)

這篇關于使用 pytesseract OCR 識別圖像中的文本的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

How to draw a rectangle around a region of interest in python(如何在python中的感興趣區域周圍繪制一個矩形)
How can I detect and track people using OpenCV?(如何使用 OpenCV 檢測和跟蹤人員?)
How to apply threshold within multiple rectangular bounding boxes in an image?(如何在圖像的多個矩形邊界框中應用閾值?)
How can I download a specific part of Coco Dataset?(如何下載 Coco Dataset 的特定部分?)
Detect image orientation angle based on text direction(根據文本方向檢測圖像方向角度)
Detect centre and angle of rectangles in an image using Opencv(使用 Opencv 檢測圖像中矩形的中心和角度)
主站蜘蛛池模板: 自拍偷拍欧美日韩 | 午夜视频 | 51免费看成人啪啪片 | 91三级视频| 国产精品99久久久久久久久久久久 | 亚洲色网址 | 四虎精品在线 | 精品国产91乱码一区二区三区 | 久久网av| www..com黄 | 免费看黄色av | 成人午夜 | 黄色大片免费观看 | 国产精品欧美精品 | av久久| 中文字幕在线不卡 | 欧美a一级 | 日韩三级影院 | 男人的天堂亚洲 | 成人黄色在线观看 | www.久草.com| 韩国三级中文字幕hd久久精品 | 久久久久久综合 | 精品视频在线播放 | 中国一级黄色录像 | 国产美女一区二区三区 | 日本一区二区不卡视频 | 夜夜骑天天干 | 成人毛片100免费观看 | 日韩在线精品视频 | 日韩欧美国产精品 | 亚洲精品午夜 | 国产一级免费视频 | 老司机精品在线 | 黄色av毛片 | 中文字幕免费视频 | 国产精品xxx在线观看 | 青青草精品 | 精品日韩在线观看 | 超碰在线免费播放 | 日韩成人在线观看视频 |