├── .github └── workflows │ └── python-package.yml ├── .idea ├── .gitignore ├── dbnavigator.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── paddleOCRPOC.iml └── vcs.xml ├── LICENSE ├── README.md ├── detection ├── CalculateMetrics.py ├── GetImagePath.py ├── OcrToDf.py ├── ReadGroundTruthFile.py ├── __pycache__ │ ├── CalculateMetrics.cpython-310.pyc │ ├── GetImagePath.cpython-310.pyc │ ├── OcrToDf.cpython-310.pyc │ ├── ReadGroundTruthFile.cpython-310.pyc │ ├── check_update_ground_truth.cpython-310.pyc │ ├── create_sheet.cpython-310.pyc │ └── decmain.cpython-310.pyc ├── check_update_ground_truth.py ├── create_sheet.py └── decmain.py ├── main.py ├── recognition ├── __pycache__ │ ├── calculate_cer.cpython-310.pyc │ ├── convert_txt_to_dict.cpython-310.pyc │ ├── create_excel_sheet.cpython-310.pyc │ ├── evaluate_model.cpython-310.pyc │ ├── get_image_paths.cpython-310.pyc │ ├── load_model.cpython-310.pyc │ ├── process_images.cpython-310.pyc │ └── rec_main.cpython-310.pyc ├── calculate_cer.py ├── convert_txt_to_dict.py ├── create_excel_sheet.py ├── evaluate_model.py ├── get_image_paths.py ├── load_model.py ├── process_images.py └── rec_main.py └── requirements.txt /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/dbnavigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/dbnavigator.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/paddleOCRPOC.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/paddleOCRPOC.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/README.md -------------------------------------------------------------------------------- /detection/CalculateMetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/CalculateMetrics.py -------------------------------------------------------------------------------- /detection/GetImagePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/GetImagePath.py -------------------------------------------------------------------------------- /detection/OcrToDf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/OcrToDf.py -------------------------------------------------------------------------------- /detection/ReadGroundTruthFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/ReadGroundTruthFile.py -------------------------------------------------------------------------------- /detection/__pycache__/CalculateMetrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/CalculateMetrics.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/GetImagePath.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/GetImagePath.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/OcrToDf.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/OcrToDf.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/ReadGroundTruthFile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/ReadGroundTruthFile.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/check_update_ground_truth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/check_update_ground_truth.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/create_sheet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/create_sheet.cpython-310.pyc -------------------------------------------------------------------------------- /detection/__pycache__/decmain.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/__pycache__/decmain.cpython-310.pyc -------------------------------------------------------------------------------- /detection/check_update_ground_truth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/check_update_ground_truth.py -------------------------------------------------------------------------------- /detection/create_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/create_sheet.py -------------------------------------------------------------------------------- /detection/decmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/detection/decmain.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/main.py -------------------------------------------------------------------------------- /recognition/__pycache__/calculate_cer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/calculate_cer.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/convert_txt_to_dict.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/convert_txt_to_dict.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/create_excel_sheet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/create_excel_sheet.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/evaluate_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/evaluate_model.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/get_image_paths.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/get_image_paths.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/load_model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/load_model.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/process_images.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/process_images.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/__pycache__/rec_main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/__pycache__/rec_main.cpython-310.pyc -------------------------------------------------------------------------------- /recognition/calculate_cer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/calculate_cer.py -------------------------------------------------------------------------------- /recognition/convert_txt_to_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/convert_txt_to_dict.py -------------------------------------------------------------------------------- /recognition/create_excel_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/create_excel_sheet.py -------------------------------------------------------------------------------- /recognition/evaluate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/evaluate_model.py -------------------------------------------------------------------------------- /recognition/get_image_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/get_image_paths.py -------------------------------------------------------------------------------- /recognition/load_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/load_model.py -------------------------------------------------------------------------------- /recognition/process_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/process_images.py -------------------------------------------------------------------------------- /recognition/rec_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/recognition/rec_main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinodbaste/paddleOCR_rec_dec/HEAD/requirements.txt --------------------------------------------------------------------------------