From d88ce4da04499fd9f48d7a21a7ecded8535e9ab2 Mon Sep 17 00:00:00 2001
From: Samo Penic <samo.penic@gmail.com>
Date: Wed, 21 Nov 2018 17:50:23 +0000
Subject: [PATCH] Fixing template matching
---
aoiOcr.py | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/aoiOcr.py b/aoiOcr.py
index be3f863..295faa4 100644
--- a/aoiOcr.py
+++ b/aoiOcr.py
@@ -26,7 +26,8 @@
"processed_scans/20160408140801098_0004.tif",
"processed_scans/20160510075445995_0026.tif"
]
-p=Paper(filename=pa[9], sid_classifier=classifier, settings=settings)
+#p=Paper(filename=pa[9], sid_classifier=classifier, settings=settings)
+p=Paper(filename='test3.tif', sid_classifier=classifier, settings=settings)
# print(p.QRData)
# print(p.errors)
@@ -40,7 +41,7 @@
print(p.get_paper_ocr_data())
-
+exit(0)
filelist = glob("processed_scans/*.tif")
wrong_sid=0;
total=0
@@ -55,4 +56,4 @@
if total%10 == 0:
print("Total:{}, wrong SID: {}".format(total,wrong_sid))
-print("Total:{}, wrong SID: {}".format(total,wrong_sid))
\ No newline at end of file
+print("Total:{}, wrong SID: {}".format(total,wrong_sid))
--
Gitblit v1.8.0