add ocrs
This commit is contained in:
parent
21c7085f42
commit
464169cec5
2 changed files with 30 additions and 0 deletions
|
@ -229,6 +229,7 @@ rev: 2024-07-14
|
|||
- [tomb](./cli/tomb.md)
|
||||
- [dysk](./cli/dysk.md)
|
||||
- [pass](./cli/pass.md)
|
||||
- [ocrs](./cli/ocrs.md)
|
||||
|
||||
## System
|
||||
- [Core Utils](./cli/system/Core%20Utils.md)
|
||||
|
|
29
technology/applications/cli/ocrs.md
Normal file
29
technology/applications/cli/ocrs.md
Normal file
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
obj: application
|
||||
repo: https://github.com/robertknight/ocrs
|
||||
rev: 2024-09-19
|
||||
---
|
||||
|
||||
# ocrs
|
||||
ocrs is a Rust library and CLI tool for extracting text from images, also known as OCR (Optical Character Recognition).
|
||||
|
||||
The goal is to create a modern OCR engine that:
|
||||
- Works well on a wide variety of images (scanned documents, photos containing text, screenshots etc.) with zero or much less preprocessing effort compared to earlier engines like Tesseract. This is achieved by using machine learning more extensively in the pipeline.
|
||||
- Is easy to compile and run across a variety of platforms, including WebAssembly
|
||||
- Is trained on open and liberally licensed datasets
|
||||
- Has a codebase that is easy to understand and modify
|
||||
|
||||
## Usage
|
||||
ocrs can be used as a binary or embedded as a [rust](../../dev/programming/languages/Rust.md) crate.
|
||||
|
||||
Usage: `ocrs [OPTIONS] <image>`
|
||||
|
||||
### Options
|
||||
|
||||
| Option | Description |
|
||||
| ----------------------- | -------------------------------------------------- |
|
||||
| `--detect-model <path>` | Use a custom text detection model |
|
||||
| `--rec-model <path>` | Use a custom text recognition model |
|
||||
| `-j, --json` | Output text and structure in JSON format |
|
||||
| `-o, --output <path>` | Output file path (defaults to stdout) |
|
||||
| `-p, --png` | Output annotated copy of input image in PNG format |
|
Loading…
Reference in a new issue