This is an open-source macOS-based Objective-C wrapper for the OCR library Tesseract.
You can also use this in Swift, instructions below.
Fork this repo if you want to experiment with it.
The wrapper consists of just the following files
SLTesseract.h
(Header file)SLTesseract.mm
(Implementation file)tessdata/
(Language files for Tesseract)lib/
(Compiled dependencies)include/
(Headers for the dependencies)
For those of you who wish to first test out the OCR capabilities, the included Screenshot-OCR
is a demo application to showcase this.
First build the Xcode project included in this repository. This will generate an application through wish you can take a screenshot, as shown in the following gif.
In the Xcode log you will find the corresponding text Tesseract detected for this screenshot.
-
Clone this project
-
Copy over the
include
,lib
, andtessdata
folders to your project. -
Add these folders to your project in Xcode. Make sure
include
andlib
are added as groups andtessdata
is added as a folder reference.The location of this setting is shown in the following image:
-
Copy over the files
SLTesseract.mm
andSLTesseract.h
to your code directory. -
Verify that the file
SLTesseract.mm
is added toTargets > Build Phases > Compile Sources
. Additionally, verify that all the static libraries are also added toTargets > Build Phases > Link Binary With Libraries
. (This process should be done automatically) -
You are now ready to use Tesseract in your macOS project. (See Example Usage for code syntax)
At the top of the file include the header file
#import "SLTesseract.h"
And then
SLTesseract *ocr = [[SLTesseract alloc] init];
will initiallize the class SLTesseract.
(optional) ocr.language = @"eng";
(optional) ocr.charWhitelist = @"abcdefghijklmnopqrstuvwxyz"
(optional) ocr.charBlacklist = @"1234567890"
Finally, assuming you already have the image that you wish to perform OCR on in NSImage form, you can call
NSString *text = [ocr recognize:image];
to recognize the image in question and get the corresponding text.
This library can be easily imported in a Swift project.
Just replicate all the steps above.
When adding .h and .mm files you will be prompted by Xcode to add a Bridging Header (if don't have one already).
Xcode will generate a file named yourProject-Bridging-Header.h
Add this line to the Bridging Header:
#import "SLTesseract.h"
Initialize like this:
let ocr = SLTesseract()
(optional) ocr.language = "eng"
(optional) ocr.charWhitelist = "abcdefghijklmnopqrstuvwxyz"
(optional) ocr.charBlacklist = "1234567890"
Finally perform OCR by doing this:
let text = ocr.recognize(image)
The libraries below are all included in the lib/
directory.
- Tesseract (v4.1.1)
- Leptonica (v1.8.0)
- LibPNG (v1.6.37)
- LibTIFF (v4.1.0)
- LibJPEG (v9d)
- LibZ (v1.2.11)
- LibOpenJPEG (v2.3.1)
- LibWebP (v1.1.0)
- LibGIF (v5.2.1)
Additionally libcurl
is required. To add libcurl
, select your target in Xcode, select Build Phases
tab and under Link Binary With Libraries
phase click on the +
button and type libcurl
. Select libcurl.tbd
.
My project Tesseract macOS itself is distributed under the MIT license (see LICENSE);
Keep in mind that the main dependency Tesseract is distributed under the Apache 2.0 license.
Open an issue if you want something fixed.
You may reach me at [email protected]
to inquire about this project.