Skip to content

Commit

Permalink
Replace references to the old wiki by new URLs
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Feb 3, 2020
1 parent a1a177f commit 1655301
Show file tree
Hide file tree
Showing 25 changed files with 54 additions and 45 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ If you think you found a bug in Tesseract, please create an issue.
Use the [users mailing-list](https://groups.google.com/d/forum/tesseract-ocr) instead of creating an Issue if ...
* You have problems using Tesseract and need some help.
* You have problems installing the software.
* You are not satisfied with the accuracy of the OCR, and want to ask how you can improve it. Note: You should first read the [ImproveQuality](https://github.com/tesseract-ocr/tesseract/wiki/ImproveQuality) wiki page.
* You are trying to train Tesseract and you have a problem and/or want to ask a question about the training process. Note: You should first read the **official** guides [[1]](https://github.com/tesseract-ocr/tesseract/wiki) or [[2]](https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract) found in the project wiki.
* You are not satisfied with the accuracy of the OCR, and want to ask how you can improve it. Note: You should first read the [ImproveQuality](https://tesseract-ocr.github.io/tessdoc/ImproveQuality.html) documentation.
* You are trying to train Tesseract and you have a problem and/or want to ask a question about the training process. Note: You should first read the **official** guides [[1]](https://tesseract-ocr.github.io/tessdoc/) or [[2]](https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html) found in the project documentation.
* You have a general question.

An issue should only be reported if the platform you are using is one of these:
Expand All @@ -26,7 +26,7 @@ Search through open and closed issues to see if similar issue has been reported

Similarly, before you post your question in the forum, search through past threads to see if similar question has been asked already.

Read the [wiki](https://github.com/tesseract-ocr/tesseract/wiki) before you report your issue or ask a question in the forum.
Read the [documentation](https://tesseract-ocr.github.io/tessdoc/) before you report your issue or ask a question in the forum.

Only report an issue in the latest official release. Optionally, try to check if the issue is not already solved in the latest snapshot in the git repository.

Expand Down Expand Up @@ -71,7 +71,7 @@ You should always make sure your changes build and run successfully.

For that, your clone needs to have all submodules (`abseil`, `googletest`, `test`) included. To do so, either specify `--recurse-submodules` during the initial clone, or run `git submodule update --init --recursive NAME` for each `NAME` later. If `configure` already created those directories (blocking the clone), remove them first (or `make distclean`), then clone and reconfigure.

Have a look at [the README](./README.md) and [testing README](./test/testing/README.md) and the [wiki page](https://github.com/tesseract-ocr/tesseract/wiki/Compiling-%E2%80%93-GitInstallation#unit-test-builds) on installation.
Have a look at [the README](./README.md) and [testing README](./test/testing/README.md) and the [documentation](https://tesseract-ocr.github.io/tessdoc/Compiling-%E2%80%93-GitInstallation.html#unit-test-builds) on installation.

In short, after running `configure` from the build directory of your choice, to build the library and CLI, run `make`. To test it, run `make check`. To build the training tools, run `make training`.

Expand Down
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Enabled OpenMP support.
* Parameter unlv_tilde_crunching change to false.
* Miscellaneous Fixes.
* Detailed Changelog can be found at https://github.com/tesseract-ocr/tesseract/wiki/4.0x-Changelog and https://github.com/tesseract-ocr/tesseract/wiki/ReleaseNotes#tesseract-release-notes-oct-29-2018---v400
* Detailed Changelog can be found at https://tesseract-ocr.github.io/tessdoc/4.0x-Changelog.html and https://tesseract-ocr.github.io/tessdoc/ReleaseNotes.html#tesseract-release-notes-oct-29-2018---v400

2017-02-16 - V3.05.00
* Made some fine tuning to the hOCR output.
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.GIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Just run:

$ make ScrollView.jar

and follow the instruction on [Viewer Debugging wiki](https://github.com/tesseract-ocr/tesseract/wiki/ViewerDebugging).
and follow the instruction on [Viewer Debugging](https://tesseract-ocr.github.io/tessdoc/ViewerDebugging.html).


# CMAKE
Expand All @@ -64,4 +64,4 @@ There is alternative build system based on multiplatform [cmake](https://cmake.o

## WINDOWS

See [Wiki](https://github.com/tesseract-ocr/tesseract/wiki) for more information on this.
See the [documentation](https://tesseract-ocr.github.io/tessdoc/) for more information on this.
30 changes: 19 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ Tesseract has **unicode (UTF-8) support**, and can **recognize more than 100 lan

Tesseract supports **various output formats**: plain text, hOCR (HTML), PDF, invisible-text-only PDF, TSV. The master branch also has experimental support for ALTO (XML) output.

You should note that in many cases, in order to get better OCR results, you'll need to **[improve the quality](https://github.com/tesseract-ocr/tesseract/wiki/ImproveQuality) of the image** you are giving Tesseract.
You should note that in many cases, in order to get better OCR results,
you'll need to **[improve the quality](https://tesseract-ocr.github.io/tessdoc/ImproveQuality.html) of the image** you are giving Tesseract.

This project **does not include a GUI application**. If you need one, please see the [3rdParty](https://github.com/tesseract-ocr/tesseract/wiki/User-Projects-%E2%80%93-3rdParty) wiki page.
This project **does not include a GUI application**.
If you need one, please see the [3rdParty](https://tesseract-ocr.github.io/tessdoc/User-Projects-%E2%80%93-3rdParty.html) documentation.

Tesseract **can be trained to recognize other languages**. See [Tesseract Training](https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract) for more information.
Tesseract **can be trained to recognize other languages**.
See [Tesseract Training](https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html) for more information.

## Brief history

Expand All @@ -45,15 +48,18 @@ In 2005 Tesseract was open sourced by HP. Since 2006 it is developed by Google.
The latest (LSTM based) stable version is **[4.1.1](https://github.com/tesseract-ocr/tesseract/releases/tag/4.1.1)**, released on December 26, 2019.
Latest source code is available from [master branch on GitHub](https://github.com/tesseract-ocr/tesseract/tree/master).
Open issues can be found in [issue tracker](https://github.com/tesseract-ocr/tesseract/issues),
and [Planning wiki](https://github.com/tesseract-ocr/tesseract/wiki/Planning).
and [planning documentation](https://tesseract-ocr.github.io/tessdoc/Planning.html).

The latest 3.0x version is **[3.05.02](https://github.com/tesseract-ocr/tesseract/releases/tag/3.05.02)**, released on June 19, 2018. Latest source code for 3.05 is available from [3.05 branch on GitHub](https://github.com/tesseract-ocr/tesseract/tree/3.05). There is no development for this version, but it can be used for special cases (e.g. see [Regression of features from 3.0x](https://github.com/tesseract-ocr/tesseract/wiki/Planning#regression-of-features-from-30x)).
The latest 3.0x version is **[3.05.02](https://github.com/tesseract-ocr/tesseract/releases/tag/3.05.02)**, released on June 19, 2018. Latest source code for 3.05 is available from [3.05 branch on GitHub](https://github.com/tesseract-ocr/tesseract/tree/3.05).
There is no development for this version, but it can be used for special cases (e.g. see [Regression of features from 3.0x](https://tesseract-ocr.github.io/tessdoc/Planning.html#regression-of-features-from-30x)).

See **[Release Notes](https://github.com/tesseract-ocr/tesseract/wiki/ReleaseNotes)** and **[Change Log](https://github.com/tesseract-ocr/tesseract/blob/master/ChangeLog)** for more details of the releases.
See **[Release Notes](https://tesseract-ocr.github.io/tessdoc/ReleaseNotes.html)**
and **[Change Log](https://github.com/tesseract-ocr/tesseract/blob/master/ChangeLog)** for more details of the releases.

## Installing Tesseract

You can either [Install Tesseract via pre-built binary package](https://github.com/tesseract-ocr/tesseract/wiki) or [build it from source](https://github.com/tesseract-ocr/tesseract/wiki/Compiling).
You can either [Install Tesseract via pre-built binary package](https://tesseract-ocr.github.io/tessdoc/)
or [build it from source](https://tesseract-ocr.github.io/tessdoc/Compiling.html).

Supported Compilers are:

Expand All @@ -65,28 +71,30 @@ Other compilers might work, but are not officially supported.

## Running Tesseract

Basic **[command line usage](https://github.com/tesseract-ocr/tesseract/wiki/Command-Line-Usage)**:
Basic **[command line usage](https://tesseract-ocr.github.io/tessdoc/Command-Line-Usage.html)**:

tesseract imagename outputbase [-l lang] [--oem ocrenginemode] [--psm pagesegmode] [configfiles...]

For more information about the various command line options use `tesseract --help` or `man tesseract`.

Examples can be found in the [wiki](https://github.com/tesseract-ocr/tesseract/wiki/Command-Line-Usage#simplest-invocation-to-ocr-an-image).
Examples can be found in the [documentatin](https://tesseract-ocr.github.io/tessdoc/Command-Line-Usage.html#simplest-invocation-to-ocr-an-image).

## For developers

Developers can use `libtesseract` [C](https://github.com/tesseract-ocr/tesseract/blob/master/include/tesseract/capi.h) or
[C++](https://github.com/tesseract-ocr/tesseract/blob/master/include/tesseract/baseapi.h) API to build their own application.
If you need bindings to `libtesseract` for other programming languages, please see the
[wrapper](https://github.com/tesseract-ocr/tesseract/wiki/AddOns#tesseract-wrappers) section on AddOns wiki page.
[wrapper](https://tesseract-ocr.github.io/tessdoc/AddOns.html#tesseract-wrappers) section in the AddOns documentation.

Documentation of Tesseract generated from source code by doxygen can be found on [tesseract-ocr.github.io](https://tesseract-ocr.github.io/).

## Support

Before you submit an issue, please review **[the guidelines for this repository](https://github.com/tesseract-ocr/tesseract/blob/master/CONTRIBUTING.md)**.

For support, first read the [Wiki](https://github.com/tesseract-ocr/tesseract/wiki), particularly the [FAQ](https://github.com/tesseract-ocr/tesseract/wiki/FAQ) to see if your problem is addressed there. If not, search the [Tesseract user forum](https://groups.google.com/d/forum/tesseract-ocr), the [Tesseract developer forum](https://groups.google.com/d/forum/tesseract-dev) and [past issues](https://github.com/tesseract-ocr/tesseract/issues), and if you still can't find what you need, ask for support in the mailing-lists.
For support, first read the [documentation](https://tesseract-ocr.github.io/tessdoc/),
particularly the [FAQ](https://tesseract-ocr.github.io/tessdoc/FAQ.html) to see if your problem is addressed there.
If not, search the [Tesseract user forum](https://groups.google.com/d/forum/tesseract-ocr), the [Tesseract developer forum](https://groups.google.com/d/forum/tesseract-dev) and [past issues](https://github.com/tesseract-ocr/tesseract/issues), and if you still can't find what you need, ask for support in the mailing-lists.

Mailing-lists:
* [tesseract-ocr](https://groups.google.com/d/forum/tesseract-ocr) - For tesseract users.
Expand Down
2 changes: 1 addition & 1 deletion doc/cntraining.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SEE ALSO
--------
tesseract(1), shapeclustering(1), mftraining(1)

<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>

COPYING
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/combine_lang_model.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ combine_lang_model(1) was first made available for tesseract4.00.00alpha.
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training tesseract LSTM: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
Information on training tesseract LSTM: <https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>

SEE ALSO
--------
Expand Down
4 changes: 2 additions & 2 deletions doc/combine_tessdata.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ COMPONENTS
The components in a Tesseract lang.traineddata file as of
Tesseract 4.0 are briefly described below; For more information on
many of these files, see
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>
and
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
<https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>
lang.config::
(Optional) Language-specific overrides to default config variables.
Expand Down
2 changes: 1 addition & 1 deletion doc/dawg2wordlist.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SEE ALSO
tesseract(1), mftraining(1), wordlist2dawg(1), unicharset(5),
combine_tessdata(1)

<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>

COPYING
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/lstmeval.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lstmeval(1) was first made available for tesseract4.00.00alpha.
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training tesseract LSTM: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
Information on training tesseract LSTM: <https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>

SEE ALSO
--------
Expand Down
5 changes: 3 additions & 2 deletions doc/lstmtraining.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ SYNOPSIS

DESCRIPTION
-----------
lstmtraining(1) trains LSTM-based networks using a list of lstmf files and starter traineddata file as the main input. Training from scratch is not recommended to be done by users. Finetuning (example command shown in synopsis above) or replacing a layer options can be used instead. Different options apply to different types of training. Read [Training Wiki page](https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00) for details.
lstmtraining(1) trains LSTM-based networks using a list of lstmf files and starter traineddata file as the main input. Training from scratch is not recommended to be done by users. Finetuning (example command shown in synopsis above) or replacing a layer options can be used instead. Different options apply to different types of training.
Read the [training documentation](https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html) for details.

OPTIONS
-------
Expand Down Expand Up @@ -100,7 +101,7 @@ lstmtraining(1) was first made available for tesseract4.00.00alpha.
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training tesseract LSTM: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
Information on training tesseract LSTM: <https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>
SEE ALSO
--------
Expand Down
2 changes: 1 addition & 1 deletion doc/merge_unicharsets.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ merge_unicharsets(1) was first made available for tesseract4.00.00alpha.
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training tesseract LSTM: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
Information on training tesseract LSTM: <https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>

SEE ALSO
--------
Expand Down
2 changes: 1 addition & 1 deletion doc/mftraining.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ SEE ALSO
tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1),
shapeclustering(1), unicharset(5)
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>
COPYING
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/set_unicharset_properties.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ set_unicharset_properties(1) was first made available for tesseract version 3.03
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
Information on training: <https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>

SEE ALSO
--------
Expand Down
2 changes: 1 addition & 1 deletion doc/shapeclustering.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ SEE ALSO
tesseract(1), cntraining(1), unicharset_extractor(1), combine_tessdata(1),
unicharset(5)
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>
COPYING
-------
Expand Down
10 changes: 5 additions & 5 deletions doc/tesseract.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ Tesseract was included in UNLV's Fourth Annual Test of OCR Accuracy.
See <https://github.com/tesseract-ocr/docs/blob/master/AT-1995.pdf>.
Since Tesseract 2.00,
scripts are now included to allow anyone to reproduce some of these tests.
See <https://github.com/tesseract-ocr/tesseract/wiki/TestingTesseract> for more
See <https://tesseract-ocr.github.io/tessdoc/TestingTesseract.html> for more
details.
Tesseract 3.00 added a number of new languages, including Chinese, Japanese,
Expand All @@ -447,16 +447,16 @@ Tesseract 3 is enabled by `--oem 0`. This also needs traineddata files which
support the legacy engine, for example those from the tessdata repository
(https://github.com/tesseract-ocr/tessdata).
For further details, see the release notes in the Tesseract wiki
(<https://github.com/tesseract-ocr/tesseract/wiki/ReleaseNotes>).
For further details, see the release notes in the Tesseract documentation
(<https://tesseract-ocr.github.io/tessdoc/ReleaseNotes.html>).
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
User forum: <http://groups.google.com/group/tesseract-ocr> +
Wiki: <https://github.com/tesseract-ocr/tesseract/wiki> +
Information on training: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
Documentation: <https://tesseract-ocr.github.io/> +
Information on training: <https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>

SEE ALSO
--------
Expand Down
2 changes: 1 addition & 1 deletion doc/text2image.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ text2image(1) was first made available for tesseract 3.03.
RESOURCES
---------
Main web site: <https://github.com/tesseract-ocr> +
Information on training tesseract LSTM: <https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract-4.00>
Information on training tesseract LSTM: <https://tesseract-ocr.github.io/tessdoc/TrainingTesseract-4.00.html>

SEE ALSO
--------
Expand Down
2 changes: 1 addition & 1 deletion doc/unicharambigs.5.asc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ letters in the unicharset.
SEE ALSO
--------
tesseract(1), unicharset(5)
https://github.com/tesseract-ocr/tesseract/wiki/Training-Tesseract-3.03%E2%80%933.05#the-unicharambigs-file
https://tesseract-ocr.github.io/tessdoc/Training-Tesseract-3.03%E2%80%933.05.html#the-unicharambigs-file

AUTHOR
------
Expand Down
2 changes: 1 addition & 1 deletion doc/unicharset.5.asc
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ SEE ALSO
--------
tesseract(1), combine_tessdata(1), unicharset_extractor(1)
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>
AUTHOR
Expand Down
2 changes: 1 addition & 1 deletion doc/unicharset_extractor.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SEE ALSO
--------
tesseract(1), unicharset(5)
<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>
HISTORY
-------
Expand Down
2 changes: 1 addition & 1 deletion doc/wordlist2dawg.1.asc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ SEE ALSO
--------
tesseract(1), combine_tessdata(1), dawg2wordlist(1)

<https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract>
<https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html>

COPYING
-------
Expand Down
2 changes: 1 addition & 1 deletion src/training/lstmtraining.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int main(int argc, char **argv) {
return EXIT_FAILURE;
}
if (FLAGS_traineddata.empty()) {
tprintf("Must provide a --traineddata see training wiki\n");
tprintf("Must provide a --traineddata see training documentation\n");
return EXIT_FAILURE;
}

Expand Down
2 changes: 1 addition & 1 deletion src/training/tesstrain.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
# This script provides an easy way to execute various phases of training
# Tesseract. For a detailed description of the phases, see
# https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract
# https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html.

import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion src/training/tesstrain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# This script provides an easy way to execute various phases of training
# Tesseract. For a detailed description of the phases, see
# https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract
# https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html.
#

display_usage() {
Expand Down
2 changes: 1 addition & 1 deletion src/training/tesstrain_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.
#
# For a detailed description of the phases, see
# https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract
# https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html.
#

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/training/tesstrain_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#
# This script defines functions that are used by tesstrain.sh
# For a detailed description of the phases, see
# https://github.com/tesseract-ocr/tesseract/wiki/TrainingTesseract
# https://tesseract-ocr.github.io/tessdoc/Training-Tesseract.html.
#
# USAGE: source tesstrain_utils.sh

Expand Down

0 comments on commit 1655301

Please sign in to comment.