tests/ide_tests/sikuliberemiz.py
changeset 3842 3922024076b3
parent 3839 a466d4468d7a
child 3853 e1cfb03e6582
--- a/tests/ide_tests/sikuliberemiz.py	Tue Aug 01 23:07:39 2023 +0200
+++ b/tests/ide_tests/sikuliberemiz.py	Mon Aug 07 18:17:12 2023 +0200
@@ -211,7 +211,11 @@
         """
         self.ocropts = sikuli.OCR.globalOptions()
         self.ocropts.dataPath(tessdata_path)
-        self.ocropts.oem(2)
+        
+        # 0 use legacy Tesseract (not so good, but repeatable)
+        # 1 use RNN Tesseract (better but non-repeatable)
+        # 2 use both
+        self.ocropts.oem(0)
         self.ocropts.smallFont()
 
         self.imgnum = 0
@@ -318,7 +322,7 @@
         for m in matches:
             mText = m.getText().encode('ascii', 'ignore')
             for arg in args:
-                if arg in mText:
+                if arg in mText or arg in mText.translate(None, "\"`'|-. "):
                     if match is None:
                         match = m
                     if mText == arg: