All Projects → ddeboer → Tesseract

ddeboer / Tesseract

Licence: mit
A PHP wrapper for the Tesseract OCR engine

Projects that are alternatives of or similar to Tesseract

cordova-plugin-tesseract
Cordova Plugin for OCR process using Tesseract
Stars: ✭ 70 (+268.42%)
Mutual labels:  ocr, tesseract
Qanswer
【Deprecated】🥇🥇🥇 冲顶大会等游戏答题助手,提供答题辅助决策 ,帮助顺利吃鸡
Stars: ✭ 326 (+1615.79%)
Mutual labels:  ocr, tesseract
staff identity card ocr project
Staff Identity Card OCR Project
Stars: ✭ 15 (-21.05%)
Mutual labels:  ocr, tesseract
tesseract-ocr
Node.js wrapper for Tesseract OCR CLI.
Stars: ✭ 29 (+52.63%)
Mutual labels:  ocr, tesseract
React Native Tesseract Ocr
Tesseract OCR wrapper for React Native
Stars: ✭ 384 (+1921.05%)
Mutual labels:  ocr, tesseract
IdCardRecognition
Android id card recognition based on OCR. 安卓基于OCR的身份证识别。
Stars: ✭ 35 (+84.21%)
Mutual labels:  ocr, tesseract
breach-protocol-autosolver
Solve breach protocol minigame in second(s). Windows/Linux/GeForce Now/Google Stadia. Every language.
Stars: ✭ 28 (+47.37%)
Mutual labels:  ocr, tesseract
Nkocr
🔎📝 This is a module to make specifics OCRs at food products and nutritional tables.
Stars: ✭ 15 (-21.05%)
Mutual labels:  ocr, tesseract
Tessdata
Trained models with support for legacy and LSTM OCR engine
Stars: ✭ 4,173 (+21863.16%)
Mutual labels:  ocr, tesseract
Ccextractor
CCExtractor - Official version maintained by the core team
Stars: ✭ 356 (+1773.68%)
Mutual labels:  ocr, tesseract
LaraOCR
Laravel Optical Character Reader(OCR) package using ocr engines like Tesseract
Stars: ✭ 88 (+363.16%)
Mutual labels:  ocr, tesseract
Easyocr
Java OCR 识别组件(基于Tesseract OCR 引擎)。能自动完成图片清理、识别 CAPTCHA 验证码图片内容的一体化工作。Java Image cleanup, OCR recognition component (based Tesseract OCR engine, automatically cleanup image and identification CAPTCHA verification code picture content).
Stars: ✭ 466 (+2352.63%)
Mutual labels:  ocr, tesseract
textocry
Textocry - Copy text from Images (chrome extension)
Stars: ✭ 29 (+52.63%)
Mutual labels:  ocr, tesseract
TesseractStudio.Net
A free Windows graphical interface to the Tesseract 4.0 OCR engine.
Stars: ✭ 38 (+100%)
Mutual labels:  ocr, tesseract
OCRmyPDF
OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched
Stars: ✭ 6,560 (+34426.32%)
Mutual labels:  ocr, tesseract
ocr
Simple app to extract text from pictures using Tesseract
Stars: ✭ 98 (+415.79%)
Mutual labels:  ocr, tesseract
tesseract-unity
Standalone OCR plugin for Unity using Tesseract
Stars: ✭ 35 (+84.21%)
Mutual labels:  ocr, tesseract
nimtesseract
A Tesseract OCR wrapper for Nim
Stars: ✭ 23 (+21.05%)
Mutual labels:  ocr, tesseract
Card Ocr
身份证识别OCR
Stars: ✭ 345 (+1715.79%)
Mutual labels:  ocr, tesseract
Ocrmypdf
OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched
Stars: ✭ 5,549 (+29105.26%)
Mutual labels:  ocr, tesseract

Build Status

Tesseract: a wrapper for the Tesseract OCR engine

A small PHP >=5.3 library that makes working with the open source Tesseract OCR engine easier.

Installation

You need a working Tesseract installation. For more information about installation and adding language support, see Tesseract’s README.

Then install this library, which is available on Packagist, through Composer:

$ composer require ddeboer/tesseract:1.0

Usage

If the tesseract binary is in your path, just do:

use Ddeboer\Tesseract\Tesseract;

$tesseract = new Tesseract();

Otherwise, construct Tesseract with the path to the binary:

$tesseract = new Tesseract('/usr/local/bin/tesseract');

Get version and supported languages information:

$version = $tesseract->getVersion();

$languages = $tesseract->getSupportedLanguages();

Perform OCR on an image file:

$text = $tesseract->recognize('myfile.tif');

Optionally, specify the language(s) as second argument:

$text = $tesseract->recognize('myfile.tif', array('nld', 'eng'));

And specify Tesseract’s page seg mode as third argument:

$text = $tesseract->recognize('myfile.tif', null, Tesseract::PAGE_SEG_MODE_AUTOMATIC_OSD);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].