You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
222 B
13 lines
222 B
6 years ago
|
/*
|
||
|
* OEM = OCR Engine Mode, and there are 4 possible modes.
|
||
|
*
|
||
|
* By default tesseract.js uses LSTM_ONLY mode.
|
||
|
*
|
||
|
*/
|
||
|
module.exports = {
|
||
|
TESSERACT_ONLY: 0,
|
||
|
LSTM_ONLY: 1,
|
||
|
TESSERACT_LSTM_COMBINED: 2,
|
||
|
DEFAULT: 3,
|
||
|
};
|