• Stars
    star
    27
  • Rank 876,149 (Top 18 %)
  • Language
    Julia
  • License
    MIT License
  • Created almost 6 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple Julia wrapper for Tesseract OCR

OCReract.jl

A simple Julia wrapper for Tesseract OCR

CI Documentation Coverage Status Join the chat at https://gitter.im/OCReract.jl

Installation

From the Julia REPL, type ] to enter the Pkg REPL mode and run:

pkg> add OCReract

This is just a wrapper, so it assumes you already have installed Tesseract.

Usage

This is a simple example of usage. For more details check the Documentation.

julia> using Images
julia> using OCReract
julia> img_path = "/path/to/img.png";
# With a disk file
julia> run_tesseract(img_path, "/tmp/res.txt", psm=3, oem=1)
# Image in memory
julia> img = load(img_path);
julia> res_text = run_tesseract(img, psm=3, oem=1);
julia> println(strip(res_text));

Testing

In a Julia session, run Pkg.test("OCReract", coverage=true).

Next steps

  • Develop a module for image pre-processing (to improve OCR results)