amnonkhen / isri-ocr-evaluation-tools

The ISRI Analytic Tools for OCR Evaluation, now with UTF-8 support!

Home Page:http://code.google.com/p/isri-ocr-evaluation-tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

isri-ocr-evaluation-tools

Build Status

The ISRI Analytic Tools consist of 17 tools for measuring the performance of and experimenting with OCR output. See the user guide for more information.

Install (OS X)

Using Homebrew:

brew tap eddieantonio/eddieantonio
brew install isri-ocr-evaluation-tools

Building

To build the library and all of the programs, simply type make.

Dependencies

OS X

brew install utf8proc

Ubuntu/Debian

If this package is not in your package repository, follow "Other Linux" below.

sudo apt-get install libutf8proc-dev

Other Linux

The automated way (copy-paste this one line):

curl -fsSL http://www.eddieantonio.ca/isri-ocr-evaluation-tools/install_utf8proc.sh | sh

The manual way:

curl -OL https://github.com/JuliaLang/utf8proc/archive/v1.3.1.tar.gz
tar xzf v1.3.1.tar.gz
cd utf8proc-1.3.1/
make
sudo make install
# Rebuild the shared object cache - needed to load the library
# at runtime <http://linux.die.net/man/8/ldconfig>
sudo ldconfig
cd -

Building the tools

make

Installing globally

Install to /usr/local/:

sudo make install

Note: You will not need sudo on OS X if you have brew installed.

Installing "locally"

This will not copy any files at all, but instead create the appropriate shell commands to add all executables, man pages, and libraries to the correct path (replace ~/.bashrc with your start-up file):

make exports >> ~/.bashrc

Porting Credits

Ported by Eddie Antonio Santos, 2015, 2016. See analytical-tools/NOTICE for copyright information regarding the original code.

License

The ISRI Analytic Tools for OCR Evaluation

Copyright 2015–2017 Eddie Antonio Santos

Copyright 1996 The Board of Regents of the Nevada System of Higher Education, on behalf, of the University of Nevada, Las Vegas, Information Science Research Institute

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

The ISRI Analytic Tools for OCR Evaluation, now with UTF-8 support!

http://code.google.com/p/isri-ocr-evaluation-tools

License:Apache License 2.0


Languages

Language:C 76.1%Language:Objective-C 11.6%Language:Python 5.4%Language:Roff 3.5%Language:C++ 1.9%Language:Makefile 1.6%