All Projects → NMAC427 → Swiftocr

NMAC427 / Swiftocr

Licence: apache-2.0
Fast and simple OCR library written in Swift

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Swiftocr

blinkid-in-browser
BlinkID In-browser SDK for WebAssembly-enabled browsers.
Stars: ✭ 40 (-99.1%)
Mutual labels:  ocr, optical-character-recognition
Document-Scanner-and-OCR
A simple document scanner with OCR implemented using Python and OpenCV
Stars: ✭ 31 (-99.3%)
Mutual labels:  ocr, optical-character-recognition
ImageToText
OCR with Google's AI technology (Cloud Vision API)
Stars: ✭ 30 (-99.33%)
Mutual labels:  ocr, optical-character-recognition
Image2text
📋 Python wrapper to grab text from images and save as text files using Tesseract Engine
Stars: ✭ 243 (-94.55%)
Mutual labels:  ocr, optical-character-recognition
IdCardRecognition
Android id card recognition based on OCR. 安卓基于OCR的身份证识别。
Stars: ✭ 35 (-99.22%)
Mutual labels:  ocr, optical-character-recognition
doctr
docTR (Document Text Recognition) - a seamless, high-performing & accessible library for OCR-related tasks powered by Deep Learning.
Stars: ✭ 1,409 (-68.4%)
Mutual labels:  ocr, optical-character-recognition
vrpdr
Deep Learning Applied To Vehicle Registration Plate Detection and Recognition in PyTorch.
Stars: ✭ 36 (-99.19%)
Mutual labels:  ocr, optical-character-recognition
Swiftytesseract
A Swift wrapper around Tesseract for use in iOS, macOS, and Linux applications
Stars: ✭ 170 (-96.19%)
Mutual labels:  ocr, optical-character-recognition
Persian-OCR
Optical character recognition of Farsi and Arabic letters
Stars: ✭ 36 (-99.19%)
Mutual labels:  ocr, optical-character-recognition
DocumentLab
OCR using tesseract, ImageMagick, EmguCV, an advanced query language and a fluent query interface for C#
Stars: ✭ 64 (-98.56%)
Mutual labels:  ocr, optical-character-recognition
Signature extractor
A super lightweight image processing algorithm for detection and extraction of overlapped handwritten signatures on scanned documents using OpenCV and scikit-image.
Stars: ✭ 205 (-95.4%)
Mutual labels:  ocr, optical-character-recognition
staff identity card ocr project
Staff Identity Card OCR Project
Stars: ✭ 15 (-99.66%)
Mutual labels:  ocr, ocr-engine
Receipt Scanner
Receipt scanner extracts information from your PDF or image receipts - built in NodeJS
Stars: ✭ 190 (-95.74%)
Mutual labels:  ocr, optical-character-recognition
jochre
Java Optical CHaracter Recognition
Stars: ✭ 18 (-99.6%)
Mutual labels:  ocr, optical-character-recognition
Android Ocr
Experimental optical character recognition app
Stars: ✭ 2,177 (-51.18%)
Mutual labels:  ocr, optical-character-recognition
mirador-textoverlay
Text Overlay plugin for Mirador 3
Stars: ✭ 35 (-99.22%)
Mutual labels:  ocr, optical-character-recognition
Tesseract4android
Fork of tess-two rewritten from scratch to support latest version of Tesseract OCR.
Stars: ✭ 148 (-96.68%)
Mutual labels:  ocr, optical-character-recognition
Ocr Table
Extract tables from scanned image PDFs using Optical Character Recognition.
Stars: ✭ 165 (-96.3%)
Mutual labels:  ocr, optical-character-recognition
PAN-Card-OCR
Retrive meaningful information from PAN Card image using tesseract-ocr 😎
Stars: ✭ 115 (-97.42%)
Mutual labels:  ocr, optical-character-recognition
doctr-tfjs-demo
Javascript demo of docTR, powered by TensorFlowJS
Stars: ✭ 21 (-99.53%)
Mutual labels:  ocr, optical-character-recognition

⛔️ This Project is deprecated and no longer gets maintained!

Please use Apple's Vision framework instead of SwiftOCR. It is very fast, accurate and much less finicky.


Deprecated Carthage compatible CocoaPods Compatible Platform

SwiftOCR

SwiftOCR is a fast and simple OCR library written in Swift. It uses a neural network for image recognition. As of now, SwiftOCR is optimized for recognizing short, one line long alphanumeric codes (e.g. DI4C9CM). We currently support iOS and OS X.

Features

  • Easy to use training class
  • High accuracy
  • Great default image preprocessing
  • Fast and accurate character segmentation algorithm
  • Add support for lowercase characters
  • Add support for connected character segmentation

Why should I choose SwiftOCR instead of Tesseract?

This is a really good question.

If you want to recognize normal text like a poem or a news article, go with Tesseract, but if you want to recognize short, alphanumeric codes (e.g. gift cards), I would advise you to choose SwiftOCR because that's where it exceeds.

Tesseract is written in C++ and over 30 years old. To use it you first have to write a Objective-C++ wrapper for it. The main issue that's slowing down Tesseract is the way memory is managed. Too many memory allocations and releases slow it down.

I did some testing on over 50 difficult images containing alphanumeric codes. The results where astonishing. SwiftOCR beat Tesseract in every category.

SwiftOCR Tesseract
Speed 0.08 sec. 0.63 sec.
Accuracy 97.7% 45.2%
CPU ~30% ~90%
Memory 45 MB 73 MB

How does it work?

  1. Input image is thresholded (binarized).
  2. Characters are extracted from the image, using a technique called Connected-component labeling.
  3. Separated characters are converted into numbers, which are then fed into the neural network.

How to use it?

SwiftOCR is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SwiftOCR'

If you ever used Tesseract you know how exhausting it can be to implement OCR into your project. SwiftOCR is the exact opposite of Tesseract. It can be implemented using just 6 lines of code.

import SwiftOCR

let swiftOCRInstance = SwiftOCR()
    
swiftOCRInstance.recognize(myImage) { recognizedString in
    print(recognizedString)
}

To improve your experience with SwiftOCR you should set your Build Configuration to Release.

Training

Training SwiftOCR is pretty easy. There are only a few steps you have to do, before it can recognize a new font.

The easiest way to train SwiftOCR is using the training app that can be found under /example/OS X/SwiftOCR Training. First select the fonts you want to train from the list. After that, you can change the characters you want to train in the text field. Finally, you have to press the Start Testing button. The only thing that's left now, is waiting. Depending on your settings, this can take between a half and two minutes. After about two minutes you may manually stop the training. Pressing the Save button will save trained network to your desktop. The Test button is used for evaluating the accuracy of the trained neural network.

Examples

Here is an example image. SwiftOCR has no problem recognizing it. If you try to recognize the same image using Tesseract the output is 'LABMENSW' ?!?!?.

Image 1

This image is difficult to recognize because of two reasons:

  • The lighting is uneven. This problem is solved by the innovative preprocessing algorithm of SwiftOCR.
  • The text in this image is distorted. Since SwiftOCR uses a neural network for the recognition, this isn't a real problem. A NN is flexible like a human brain and can recognize even the most distorted image (most of the time).

TODO

Dependencies

License

The code in this repository is licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

NOTE: This software depends on other packages that may be licensed under different open source licenses.

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].