Development of the ocr part of AOI
Samo Penic
2018-11-16 0436f6a7caac71fc119c6e70a8b0cd1a8fe1f9d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from Ocr import Paper
from sklearn.externals import joblib
 
 
settings = {"sid_mask": "11xx0xxx", "answer_treshold": 0.25}
classifier = joblib.load("filename.joblib")
 
#p = Paper(filename="testpage300dpi_scan1.png")
p=Paper(filename='sizif111.tif', sid_classifier=classifier, settings=settings)
# p=Paper(filename='processed_scans/20141016095134535_0028.tif')
 
# print(p.QRData)
# print(p.errors)
 
# print(p.getSkewAngle())
# print(p.locateUpMarkers())
# print(p.locateRightMarkers())
# print(p.answerMatrix)
# p.get_enhanced_sid()
 
 
print(p.get_paper_ocr_data())