Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/native-bindings/libtesseract
Tesseract OCR bindings to NodeJS
https://github.com/native-bindings/libtesseract
bindings c javascript nodejs tesseract
Last synced: about 1 month ago
JSON representation
Tesseract OCR bindings to NodeJS
- Host: GitHub
- URL: https://github.com/native-bindings/libtesseract
- Owner: native-bindings
- Created: 2018-01-26T23:23:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-26T23:31:21.000Z (almost 7 years ago)
- Last Synced: 2024-04-24T11:12:45.166Z (8 months ago)
- Topics: bindings, c, javascript, nodejs, tesseract
- Language: C++
- Size: 42 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tesseract_bindings
Tesseract OCR bindings to NodeJS
## Dependencies
```
sudo apt-get install -y tesseract-ocr tesseract-ocr-eng
```## Installation
```
npm install --save tesseract_bindings
```## Usage
```js
const {
Tesseract,
Image
} = require('tesseract_bindings');const text = new Tesseract("eng").setImage(
new Image(__dirname + "/image.png")
).getUTF8Text();
```