-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove whitespace (blanks, tabs, cr) at line endings Signed-off-by: Stefan Weil <[email protected]>
- Loading branch information
Showing
45 changed files
with
239 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
2017-03-24 - V4.00.00-alpha | ||
* Added new neural network system based on LSTMs, with major accuracy gains. | ||
* Improvements to PDF rendering. | ||
* Fixes to trainingdata rendering. | ||
* Fixes to trainingdata rendering. | ||
* Added LSTM models+lang models to 101 languages. (tessdata repository) | ||
* Improved multi-page TIFF handling. | ||
* Fixed damage to binary images when processing PDFs. | ||
|
@@ -40,7 +40,7 @@ | |
* Fixed some openCL issues. | ||
* Added option to build Tesseract with CMake build system. | ||
* Implemented CPPAN support for easy Windows building. | ||
|
||
2016-02-17 - V3.04.01 | ||
* Added OSD renderer for psm 0. Works for single page and multi-page images. | ||
* Improve tesstrain.sh script. | ||
|
@@ -84,7 +84,7 @@ | |
text and truetype fonts. | ||
* Added support for PDF output with searchable text. | ||
* Removed entire IMAGE class and all code in image directory. | ||
* Tesseract executable: support for output to stdout; limited support for one | ||
* Tesseract executable: support for output to stdout; limited support for one | ||
page images from stdin (especially on Windows) | ||
* Added Renderer to API to allow document-level processing and output | ||
of document formats, like hOCR, PDF. | ||
|
@@ -169,12 +169,12 @@ | |
* Added TessdataManager to combine data files into a single file. | ||
* Some dead code deleted. | ||
* VC++6 no longer supported. It can't cope with the use of templates. | ||
* Many more languages added. | ||
* Many more languages added. | ||
* Doxygenation of most of the function header comments. | ||
* Added man pages. | ||
* Added bash completion script (issue 247: thanks to neskiem) | ||
* Fix integer overview in thresholding (issue 366: thanks to Cyanide.Drake) | ||
* Add Danish Fraktur support (issues 300, 360: thanks to | ||
* Add Danish Fraktur support (issues 300, 360: thanks to | ||
[email protected]) | ||
* Fix file pointer leak (issue 359, thanks to yukihiro.nakadaira) | ||
* Fix an error using user-words (Issue 345: thanks to max.markin) | ||
|
@@ -183,7 +183,7 @@ | |
* Fix an automake error (Issue 318, thanks to ichanjz) | ||
* Fix a Win32 crash on fileFormatIsTiff() (Issues 304, 316, 317, 330, 347, | ||
349, 352: thanks to nguyenq87, max.markin, zdenop) | ||
* Fixed a number of errors in newer (stricter) versions of VC++ (Issues | ||
* Fixed a number of errors in newer (stricter) versions of VC++ (Issues | ||
301, among others) | ||
|
||
2009-06-30 - V2.04 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#-*- mode: shell-script;-*- | ||
# | ||
# bash completion support for tesseract | ||
# bash completion support for tesseract | ||
# | ||
# Copyright (C) 2009 Neskie A. Manuel <[email protected]> | ||
# Distributed under the Apache License, Version 2.0. | ||
|
@@ -20,19 +20,19 @@ _tesseract() | |
COMPREPLY=() | ||
cur="$2" | ||
prev="$3" | ||
|
||
case "$prev" in | ||
tesseract) | ||
COMPREPLY=($(compgen -f -X "!*.+(tif)" -- "$cur") ) | ||
;; | ||
*.tif) | ||
COMPREPLY=($(compgen -W "$(basename $prev .tif)" ) ) | ||
COMPREPLY=($(compgen -W "$(basename $prev .tif)" ) ) | ||
;; | ||
-l) | ||
_tesseract_languages | ||
;; | ||
*) | ||
COMPREPLY=($(compgen -W "-l" ) ) | ||
COMPREPLY=($(compgen -W "-l" ) ) | ||
;; | ||
esac | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.