Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/naptha/tesseract.js.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBalearica <admin@scribeocr.com>2022-09-21 05:08:06 +0300
committerGitHub <noreply@github.com>2022-09-21 05:08:06 +0300
commit263dbb87b11871eb29887b68ef2253ec0dca120c (patch)
treedf170ba14edcf5f093a75806cf292c80d4e6b3b1
parentc9200839dfcbdc20df82daa6c6a1b0cd4bb9ae21 (diff)
Updated enums per #434 (#671)
-rw-r--r--src/constants/PSM.js1
-rw-r--r--src/index.d.ts4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/constants/PSM.js b/src/constants/PSM.js
index 8d25442..50188aa 100644
--- a/src/constants/PSM.js
+++ b/src/constants/PSM.js
@@ -15,4 +15,5 @@ module.exports = {
SINGLE_CHAR: '10',
SPARSE_TEXT: '11',
SPARSE_TEXT_OSD: '12',
+ RAW_LINE: '13',
};
diff --git a/src/index.d.ts b/src/index.d.ts
index ce697f8..78b68cf 100644
--- a/src/index.d.ts
+++ b/src/index.d.ts
@@ -84,13 +84,13 @@ declare namespace Tesseract {
width: number
height: number
}
- const enum OEM {
+ enum OEM {
TESSERACT_ONLY,
LSTM_ONLY,
TESSERACT_LSTM_COMBINED,
DEFAULT,
}
- const enum PSM {
+ enum PSM {
OSD_ONLY = '0',
AUTO_OSD = '1',
AUTO_ONLY = '2',