Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# tesseract-sharder
Sharding module for Tesseract.js

Create 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/");
})
```