Is it possible to limit recognition of tesseract to four characters only like this "abcdABCD" ? I've tried this link and created a ".cfg" file inside of my folder TESSDATA which is inside of my project folder.
C:\Users\Julian Concepcion\Desktop\MyProject\MyProject\tessdata
it is named config.cfg, inside the config.cfg is this "tessedit_char_whitelist abcdABCD " but I don't know how to use it inside the c#. This is how I call my tesseract
tess = new Tesseract("C:\\Users\\Julian Concepcion\\Desktop\\MyProject\\MyProject\\tessdata", "eng", Tesseract.OcrEngineMode.OEM_TESSERACT_CUBE_COMBINED);