Configuration file to call the main python script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################ | |
#### Written By: SATYAKI DE #### | |
#### Written On: 15-May-2020 #### | |
#### Modified On: 18-Sep-2022 #### | |
#### #### | |
#### Objective: This script is a config #### | |
#### file, contains all the keys for #### | |
#### text extraction via image scanning. #### | |
#### #### | |
################################################ | |
import os | |
import platform as pl | |
my_dict = {} | |
class clsConfigClient(object): | |
Curr_Path = os.path.dirname(os.path.realpath(__file__)) | |
os_det = pl.system() | |
if os_det == "Windows": | |
sep = '\\' | |
else: | |
sep = '/' | |
conf = { | |
'APP_ID': 1, | |
'ARCH_DIR': Curr_Path + sep + 'arch' + sep, | |
'PROFILE_PATH': Curr_Path + sep + 'profile' + sep, | |
'LOG_PATH': Curr_Path + sep + 'log' + sep, | |
'REPORT_PATH': Curr_Path + sep + 'report', | |
'SRC_PATH': Curr_Path + sep + 'data' + sep, | |
'FINAL_PATH': Curr_Path + sep + 'Target' + sep, | |
'IMAGE_PATH': Curr_Path + sep + 'Scans' + sep, | |
'TEMPLATE_PATH': Curr_Path + sep + 'Template' + sep, | |
'APP_DESC_1': 'Text Extraction from Video!', | |
'DEBUG_IND': 'N', | |
'INIT_PATH': Curr_Path, | |
'SUBDIR': 'data', | |
'WIDTH': 320, | |
'HEIGHT': 320, | |
'PADDING': 0.1, | |
'SEP': sep, | |
'MIN_CONFIDENCE':0.5, | |
'GPU':-1, | |
'FILE_NAME':'FilledUp.jpeg', | |
'TEMPLATE_FILE_NAME':'Template.jpeg', | |
'TITLE': "Text Reading!", | |
'ORIG_TITLE': "Camera Source!", | |
'LANG':"en", | |
'OEM_VAL': 1, | |
'PSM_VAL': 7, | |
'DRAW_TAG': (0, 0, 255), | |
'LAYER_DET':[ | |
"feature_fusion/Conv_7/Sigmoid", | |
"feature_fusion/concat_3"], | |
"CACHE_LIM": 1, | |
'ASCII_RANGE': 128, | |
'SUBTRACT_PARAM': (123.68, 116.78, 103.94), | |
'MY_DICT': { | |
"atrib_1": {"id": "FileNo", "bbox": (425, 60, 92, 34), "filter_keywords": tuple(["FILE", "DEPT"])}, | |
"atrib_2": {"id": "DeptNo", "bbox": (545, 60, 87, 40), "filter_keywords": tuple(["DEPT", "CLOCK"])}, | |
"atrib_3": {"id": "ClockNo", "bbox": (673, 60, 75, 36), "filter_keywords": tuple(["CLOCK","VCHR.","NO."])}, | |
"atrib_4": {"id": "VCHRNo", "bbox": (785, 60, 136, 40), "filter_keywords": tuple(["VCHR.","NO."])}, | |
"atrib_5": {"id": "DigitNo", "bbox": (949, 60, 50, 38), "filter_keywords": tuple(["VCHR.","NO.", "056"])}, | |
"atrib_6": {"id": "CompanyName", "bbox": (326, 140, 621, 187), "filter_keywords": tuple(["COMPANY","FILE"])}, | |
"atrib_7": {"id": "StartDate", "bbox": (1264, 143, 539, 44), "filter_keywords": tuple(["Period", "Beginning:"])}, | |
"atrib_8": {"id": "EndDate", "bbox": (1264, 193, 539, 44), "filter_keywords": tuple(["Period", "Ending:"])}, | |
"atrib_9": {"id": "PayDate", "bbox": (1264, 233, 539, 44), "filter_keywords": tuple(["Pay", "Date:"])}, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment