From d5c694ac711ca3b434bf16bd920b90d1a7e758c4 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Sat, 17 Nov 2018 09:57:31 +0000
Subject: [PATCH] Improving the robustness of all three algorithms.
---
Ocr.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Ocr.py b/Ocr.py
index 662cb0b..f4447e5 100644
--- a/Ocr.py
+++ b/Ocr.py
@@ -222,7 +222,7 @@
sid_mask=self.settings.get("sid_mask", None)
es,err,warn = getSID(
self.img[
- int(0.045 * self.imgHeight) : int(0.085 * self.imgHeight),
+ int(0.04 * self.imgHeight) : int(0.095 * self.imgHeight),
int(0.7 * self.imgWidth) : int(0.99 * self.imgWidth),
],
self.sid_classifier,
--
Gitblit v1.8.0