Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yaeby/textfromimage

A spring boot web app that extracts text from image using tesseract ocr.
https://github.com/yaeby/textfromimage

maven spring-boot tesseract tesseract-ocr text-from-image text-processing

Last synced: 11 days ago
JSON representation

A spring boot web app that extracts text from image using tesseract ocr.

Awesome Lists containing this project

README

        

# Extract text from image
A simple and small spring-boot example that extracts text from image using `Tesseract OCR`.

---

Basically this is the whole OCR:
```xml

org.bytedeco.javacpp-presets
tesseract
3.03-rc1-0.11

```

and in resources u can find a `tessdata` folder with trained data.

---

  • There are a lot of examples of apps in different languages that implement
    `Tesseract OCR` to extract the text from image, but I did not find a clear example
    how to use it without downloading SDK's or hard data on your pc.

  • This example can be a good base for starting building a web app to extract
    text from images.