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.
18 lines
425 B
18 lines
425 B
6 years ago
|
module.exports = {
|
||
|
/*
|
||
|
* OEM = OCR Engine Mode, and there are 5 possible modes.
|
||
|
*
|
||
|
* By default tesseract.js uses DEFAULT mode, which uses LSTM when possible.
|
||
|
* If you need to use some tesseract v3 features (like tessedit_chars_whitelist),
|
||
|
* you need to use TESSERACT_ONLY mode.
|
||
|
*
|
||
|
*/
|
||
|
OEM: {
|
||
|
TESSERACT_ONLY: 0,
|
||
|
LSTM_ONLY: 1,
|
||
|
TESSERACT_LSTM_COMBINED: 2,
|
||
|
DEFAULT: 3,
|
||
|
COUNT: 4,
|
||
|
},
|
||
|
};
|