--
You received this message because you are subscribed to the Google Groups "tesseract-ocr" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tesseract-oc...@googlegroups.com.
To post to this group, send email to tesser...@googlegroups.com.
Visit this group at https://groups.google.com/group/tesseract-ocr.
To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/943f76c3-959e-49ad-aa0e-d0cb0fd83a1c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Also, I can see the blacklist, whitelist variables set, but still see the blacklist characters in response?
TessBaseAPI api = new TessBaseAPI();
api.Init(null, "eng")
api.SetVariable("tessedit_char_blacklist", "™©°!@#%^&*()_+=-[]}{;:'\\\"\\\\|~`,/<>?"); // "!?@#%&*()<>_-+=/:;'\"");
api.SetVariable("tessedit_char_whitelist", ".$0123456789,/ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
api.SetImage(pixReadMem(bytes, bytes.length));
BytePointer outText = api.GetUTF8Text();
String tessedit_char_blacklist_value = api.GetStringVariable("tessedit_char_blacklist");
System.out.println("tessedit_char_blacklist_value value is " + tessedit_char_blacklist_value);
To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/8e7d2cad-9ad3-4ab2-a909-1b4724b13e6f%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/968622a2-e73a-4359-92c7-a92f5c457c51%40googlegroups.com.