Skip to content

Commit

Permalink
Merge pull request #35 from henrivain/master
Browse files Browse the repository at this point in the history
Fixes to markdown documents
  • Loading branch information
henrivain authored Jan 23, 2024
2 parents d34e629 + 6b97f51 commit ba2940e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion Documentation/OcrCharacterWhiteList.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Ocr Character Whitelist/Blacklist

#### Updated 15.9.2023
#### Updated 16.1.2024 `This way of configuration is no longer needed`

Refers to issues [Text whitelist #15](https://github.com/henrivain/TesseractOcrMaui/issues/15) and [Add way to configure TessEngine ITesseract is using #16](https://github.com/henrivain/TesseractOcrMaui/issues/16)

## Obsolete

After update to v1.0.8 these engine configurations can be set directly in ITesseract interface. With following property.
```cs
Action<ITessEngineConfigurable>? EngineConfiguration { set; }
```

### Intro

This document shows how to limit which characters are recognized from image. Process is very easy, but you cannot access it from ITesseract interface at the moment. All functionality is found on nuget package. In future you probably are able to configure also in ITesseract level.
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# TesseractOcrMaui

[![Deploy iOS package to NuGet](https://github.com/henrivain/TesseractOcrMaui/actions/workflows/generate_ios_nuget.yml/badge.svg?branch=production)](https://github.com/henrivain/TesseractOcrMaui/actions/workflows/generate_ios_nuget.yml)
[![Deploy to NuGet](https://github.com/henrivain/TesseractOcrMaui/actions/workflows/generate_nuget.yml/badge.svg)](https://github.com/henrivain/TesseractOcrMaui/actions/workflows/generate_nuget.yml)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

[Tesseract](https://github.com/tesseract-ocr/tesseract) wrapper for Windows, iOS and Android for .NET MAUI.

## What is this?
Expand All @@ -9,6 +13,7 @@
## Supported platforms

Currently supports Windows, iOS and Android. Library is meant to be used with .NET MAUI project. You can see supported cpu architechtures down below.
Uses Tesseract v5.3.3 or newer.

| platform | Architechture |
| ------------------- | ------------- |
Expand All @@ -26,7 +31,7 @@ Supported runtimes
> net7.0 or newer
> net7.0-windows10.0.19041 or newer
> net7.0-android or newer
> net7.0-ios or newer
> net7.0-ios or newer
Only png and jpeg libraries are compiled into tesseract native libraries, so only these image types are supported. Additional image libraries are added if needed later.

Expand Down

0 comments on commit ba2940e

Please sign in to comment.