tesseract_ocr v0.1.3 TesseractOcr.Words View Source

Documentation for TesseractOcrWords. This Module is a wrapper of tesseract-ocr box

Link to this section Summary

Functions

This function reads the words on image by OCR and returns with positions

Link to this section Functions

Link to this function

content_match(string, re)

View Source
Link to this function

read(path, options \\ %{})

View Source

This function reads the words on image by OCR and returns with positions

Examples

iex> TesseractOcr.Words.read("test/resources/world.png")
[%{confidence: 95, word: "world", x_end: 185, x_start: 2, y_end: 56, y_start: 2}]
Link to this function

word_info(word, positions, confidence)

View Source