Pure Javascript OCR for more than 100 Languages 📖🎉🖥
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.
|
|
|
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_char_whitelist),
|
|
|
|
* you need to use TESSERACT_ONLY mode.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
OEM: {
|
|
|
|
TESSERACT_ONLY: 0,
|
|
|
|
LSTM_ONLY: 1,
|
|
|
|
TESSERACT_LSTM_COMBINED: 2,
|
|
|
|
DEFAULT: 3,
|
|
|
|
COUNT: 4,
|
|
|
|
},
|
|
|
|
};
|