Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rednexie/tesseract-sharder
Sharding module for Tesseract.js
https://github.com/rednexie/tesseract-sharder
Last synced: 17 days ago
JSON representation
Sharding module for Tesseract.js
- Host: GitHub
- URL: https://github.com/rednexie/tesseract-sharder
- Owner: Rednexie
- License: mit
- Created: 2023-11-27T08:41:47.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-02T06:22:39.000Z (11 months ago)
- Last Synced: 2024-09-02T09:48:51.255Z (2 months ago)
- Language: JavaScript
- Size: 93.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tesseract-sharder
Sharding module for Tesseract.jsCreate one:
```js
const TesseractSharder = require("tesseract-sharder");
const shard = new TesseractSharder()
```
Methods
```js
(async () => {
const image = await shard.recognize("image.png");
})
``````js
(async () => {
const images = await shard.recognizeDir("./images/");
})
```