Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 899 Bytes

File metadata and controls

39 lines (28 loc) · 899 Bytes
layout newocr
title Home
description A wiki with examples/tutorials for NewOCR, a pure Java OCR without machine learning.
nav_order 1
permalink /
github-path index.md

NewOCR

{: .fs-9 }

NewOCR is an OCR made in Java without the use of machine learning, making it easy to use and contribute to.

View it on GitHub{: .btn .fs-5 .mb-4 .mb-md-0 } View Docs{: .btn .fs-5 .mb-4 .mb-md-0 }


Getting started

NewOCR can either download the latest jar from GitHub, or by using Gradle or Maven (The latter two being preferred).

Gradle

compile 'com.uddernetworks.newocr:NewOCR:2.0.0'

Maven

<dependency>
    <groupId>com.uddernetworks.newocr</groupId>
    <artifactId>NewOCR</artifactId>
    <version>2.0.0</version>
</dependency>