All Projects → iron-software → Iron-OCR-Image-to-Text-in-CSharp

iron-software / Iron-OCR-Image-to-Text-in-CSharp

Licence: other
Image to Text Tutorial in C# - See https://ironsoftware.com/csharp/ocr/tutorials/how-to-read-text-from-an-image-in-csharp-net/

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Iron-OCR-Image-to-Text-in-CSharp

cordova-plugin-tesseract
Cordova Plugin for OCR process using Tesseract
Stars: ✭ 70 (+7.69%)
Mutual labels:  ocr
CategoryTool
Unity Editor tool to create Categories in the Hierarchy. The Categories work as dividers between GameObjects.
Stars: ✭ 47 (-27.69%)
Mutual labels:  csharp-code
tutorials
Git Repo for Articles on Ergo Sum blog and the youtube channel https://www.youtube.com/channel/UCiie9CN--dazA7iT2sry5FA
Stars: ✭ 42 (-35.38%)
Mutual labels:  ocr
craft-text-detector
Packaged, Pytorch-based, easy to use, cross-platform version of the CRAFT text detector
Stars: ✭ 151 (+132.31%)
Mutual labels:  ocr
ibm-cloud-functions-serverless-ocr-openchecks
Serverless bank check deposit processing with object storage and optical character recognition using Apache OpenWhisk powered by IBM Cloud Functions. See the Tech Talk replay for a demo.
Stars: ✭ 40 (-38.46%)
Mutual labels:  ocr
go-ocr
A tool for extracting text from scanned documents (via OCR), with user-defined post-processing.
Stars: ✭ 31 (-52.31%)
Mutual labels:  ocr
polling-station-app
Voting station app to redeem the suffrage on the blockchain using a machine readable travel document.
Stars: ✭ 39 (-40%)
Mutual labels:  ocr
Seven-Segment-OCR
Computer vision project to automatically recognize digits characters in a seven-segments display
Stars: ✭ 58 (-10.77%)
Mutual labels:  ocr
doctr-tfjs-demo
Javascript demo of docTR, powered by TensorFlowJS
Stars: ✭ 21 (-67.69%)
Mutual labels:  ocr
TextBoxGAN
Generate text boxes from input words with a GAN.
Stars: ✭ 50 (-23.08%)
Mutual labels:  ocr
proxy-scrape
scrapin' proxies with ocr
Stars: ✭ 20 (-69.23%)
Mutual labels:  ocr
KTP-OCR
An Open Source OCR tool for Indonesian ID card (KTP).
Stars: ✭ 48 (-26.15%)
Mutual labels:  ocr
granblue-automation-android
Educational application written in Kotlin aimed at automating user-defined workflows for the mobile game, "Granblue Fantasy", using MediaProjection, AccessibilityService, and OpenCV.
Stars: ✭ 26 (-60%)
Mutual labels:  ocr
lookup
🔍 Pure Go implementation of fast image search and simple OCR, focused on reading info from screenshots
Stars: ✭ 35 (-46.15%)
Mutual labels:  ocr
PSENet-Tensorflow
TensorFlow implementation of PSENet text detector (Shape Robust Text Detection with Progressive Scale Expansion Networkt)
Stars: ✭ 51 (-21.54%)
Mutual labels:  ocr
ScreencapToTextBot
Reddit bot that takes the screencap of a conversation and converts it in reddit formatted text
Stars: ✭ 12 (-81.54%)
Mutual labels:  ocr
python-ocr-example
The code for the blogpost A Python Approach to Character Recognition
Stars: ✭ 54 (-16.92%)
Mutual labels:  ocr
scanbot-sdk-example-ionic
Scanbot scanner SDK example app for Ionic with Cordova.
Stars: ✭ 24 (-63.08%)
Mutual labels:  ocr
pyxpdf
Fast and memory-efficient Python PDF Parser based on xpdf sources
Stars: ✭ 26 (-60%)
Mutual labels:  pdftotext
deep-text-recognition-benchmark
PyTorch code of my ICDAR 2021 paper Vision Transformer for Fast and Efficient Scene Text Recognition (ViTSTR)
Stars: ✭ 123 (+89.23%)
Mutual labels:  ocr

Image to Text in C#

This repository contains sample C# source code referenced in the tutorial documentation for IronOCR. https://ironsoftware.com/csharp/ocr/

Dependancies

The Iron OCR library for .Net

 PM > Install-Package IronOcr

Example 1

Example 1 explores the AutoOcr Class an shows that OCR can be performed in a single line of C# code in a .Net Project

This technique works for OCR on Images, Screenshots, Scans, Photographs and PDF documents.

Example 2

Example 2 shows the AdvancedOcr Class.

It also demonstrated IronOCR key feature - it is highly successful in performing OCR on low quality input images and documents.

Even with skew, rotation. text distortion and digital noise, there is only a 0.9% drop in OCR accuracy and no major loss of speed for OCR.

Example 3

Example 3 shows how to use a System.Drawing.Rectangle to perform OCR on a specified region ("crop-region") of a document.

Example 4

Example 4 shows the use af an OCR language pack to read Arabic text in C#.

PM> Install-Package IronOcr.Languages.Arabic

Other International OCR Languages

22 OCR languages are supported including:

  • Arabic
  • ChineseSimplified
  • ChineseTraditional
  • Czech
  • Danish
  • Finnish
  • French
  • German
  • Greek
  • Hebrew
  • Hungarian
  • Italian
  • Japanese
  • Korean
  • Norwegian
  • Polish
  • Portuguese
  • Russian
  • Spanish
  • Swedish
  • Thai
  • Turkish
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].