Python-tesseract

码农软件 · 软件分类 · 图形/图像处理 · 2019-09-07 16:44:23

软件介绍

Python-tesseract 是 Tesseract OCR 的 Python 封装包,可作常用的图片文件读取和解码。

示例代码:

import cv2.cv as cv
import tesseract

api
= tesseract.TessBaseAPI()
api
.Init(".","eng",tesseract.OEM_DEFAULT)
api
.SetPageSegMode(tesseract.PSM_AUTO)

image
=cv.LoadImage("eurotext.jpg", cv.CV_LOAD_IMAGE_GRAYSCALE)
tesseract
.SetCvImage(image,api)
text
=api.GetUTF8Text()
conf
=api.MeanTextConf()

本文地址:https://www.codercto.com/soft/d/14087.html

Understanding Machine Learning

Understanding Machine Learning

Shai Shalev-Shwartz、Shai Ben-David / Cambridge University Press / 2014 / USD 48.51

Machine learning is one of the fastest growing areas of computer science, with far-reaching applications. The aim of this textbook is to introduce machine learning, and the algorithmic paradigms it of......一起来看看 《Understanding Machine Learning》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具