Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iron-software/Iron-OCR-Image-to-Text-in-CSharp
Image to Text Tutorial in C# - See https://ironsoftware.com/csharp/ocr/tutorials/how-to-read-text-from-an-image-in-csharp-net/
https://github.com/iron-software/Iron-OCR-Image-to-Text-in-CSharp
csharp csharp-code imagetotext ocr pdftotext
Last synced: 1 day ago
JSON representation
Image to Text Tutorial in C# - See https://ironsoftware.com/csharp/ocr/tutorials/how-to-read-text-from-an-image-in-csharp-net/
- Host: GitHub
- URL: https://github.com/iron-software/Iron-OCR-Image-to-Text-in-CSharp
- Owner: iron-software
- Created: 2018-11-16T03:38:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-16T03:53:22.000Z (almost 6 years ago)
- Last Synced: 2024-10-30T17:24:04.462Z (15 days ago)
- Topics: csharp, csharp-code, imagetotext, ocr, pdftotext
- Language: C#
- Homepage:
- Size: 3.8 MB
- Stars: 72
- Watchers: 8
- Forks: 17
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://ironsoftware.com/csharp/ocr/languages/) to read Arabic text in C#.
```
PM> Install-Package IronOcr.Languages.Arabic
```
### Other International OCR Languages22 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