├── .DS_Store ├── Completed_Notebook.pdf ├── Example_Notebook.pdf ├── OCR_Python ├── .DS_Store ├── .ipynb_checkpoints │ └── PreProcess_OCR-checkpoint.ipynb ├── PreProcess_OCR.ipynb ├── __pycache__ │ ├── Process_Programs.cpython-311.pyc │ └── preprocess.cpython-311.pyc ├── images │ ├── .DS_Store │ ├── 126.png │ ├── 1888_Page_161.png │ └── NYT.png ├── output │ ├── .DS_Store │ ├── NYT_GCloud.json │ ├── NYT_GCloud.txt │ ├── NYT_Textract.json │ ├── NYT_Textract.txt │ ├── modified_1888_Page_161.xlsx │ ├── modified_1888_Page_161_GCloud.json │ ├── modified_1888_Page_161_GCloud.txt │ ├── modified_1888_Page_161_Textract.json │ ├── modified_1888_Page_161_Textract.txt │ ├── modified_1_126_GCloud.json │ ├── modified_1_126_GCloud.txt │ ├── modified_2_126_GCloud.json │ ├── modified_2_126_GCloud.txt │ └── modified_images │ │ ├── .DS_Store │ │ ├── modified_1888_Page_161.png │ │ ├── modified_1_126.png │ │ └── modified_2_126.png ├── preprocess.py └── requirements.txt ├── ReadMe.md ├── Setup_AWS_Root.md ├── Setup_Google_Cloud.md ├── Setup_Virtual_Environment.md └── acknowledgements.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/.DS_Store -------------------------------------------------------------------------------- /Completed_Notebook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/Completed_Notebook.pdf -------------------------------------------------------------------------------- /Example_Notebook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/Example_Notebook.pdf -------------------------------------------------------------------------------- /OCR_Python/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/.DS_Store -------------------------------------------------------------------------------- /OCR_Python/.ipynb_checkpoints/PreProcess_OCR-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/.ipynb_checkpoints/PreProcess_OCR-checkpoint.ipynb -------------------------------------------------------------------------------- /OCR_Python/PreProcess_OCR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/PreProcess_OCR.ipynb -------------------------------------------------------------------------------- /OCR_Python/__pycache__/Process_Programs.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/__pycache__/Process_Programs.cpython-311.pyc -------------------------------------------------------------------------------- /OCR_Python/__pycache__/preprocess.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/__pycache__/preprocess.cpython-311.pyc -------------------------------------------------------------------------------- /OCR_Python/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/images/.DS_Store -------------------------------------------------------------------------------- /OCR_Python/images/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/images/126.png -------------------------------------------------------------------------------- /OCR_Python/images/1888_Page_161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/images/1888_Page_161.png -------------------------------------------------------------------------------- /OCR_Python/images/NYT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/images/NYT.png -------------------------------------------------------------------------------- /OCR_Python/output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/.DS_Store -------------------------------------------------------------------------------- /OCR_Python/output/NYT_GCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/NYT_GCloud.json -------------------------------------------------------------------------------- /OCR_Python/output/NYT_GCloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/NYT_GCloud.txt -------------------------------------------------------------------------------- /OCR_Python/output/NYT_Textract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/NYT_Textract.json -------------------------------------------------------------------------------- /OCR_Python/output/NYT_Textract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/NYT_Textract.txt -------------------------------------------------------------------------------- /OCR_Python/output/modified_1888_Page_161.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1888_Page_161.xlsx -------------------------------------------------------------------------------- /OCR_Python/output/modified_1888_Page_161_GCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1888_Page_161_GCloud.json -------------------------------------------------------------------------------- /OCR_Python/output/modified_1888_Page_161_GCloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1888_Page_161_GCloud.txt -------------------------------------------------------------------------------- /OCR_Python/output/modified_1888_Page_161_Textract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1888_Page_161_Textract.json -------------------------------------------------------------------------------- /OCR_Python/output/modified_1888_Page_161_Textract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1888_Page_161_Textract.txt -------------------------------------------------------------------------------- /OCR_Python/output/modified_1_126_GCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1_126_GCloud.json -------------------------------------------------------------------------------- /OCR_Python/output/modified_1_126_GCloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_1_126_GCloud.txt -------------------------------------------------------------------------------- /OCR_Python/output/modified_2_126_GCloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_2_126_GCloud.json -------------------------------------------------------------------------------- /OCR_Python/output/modified_2_126_GCloud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_2_126_GCloud.txt -------------------------------------------------------------------------------- /OCR_Python/output/modified_images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_images/.DS_Store -------------------------------------------------------------------------------- /OCR_Python/output/modified_images/modified_1888_Page_161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_images/modified_1888_Page_161.png -------------------------------------------------------------------------------- /OCR_Python/output/modified_images/modified_1_126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_images/modified_1_126.png -------------------------------------------------------------------------------- /OCR_Python/output/modified_images/modified_2_126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/output/modified_images/modified_2_126.png -------------------------------------------------------------------------------- /OCR_Python/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/preprocess.py -------------------------------------------------------------------------------- /OCR_Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/OCR_Python/requirements.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Setup_AWS_Root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/Setup_AWS_Root.md -------------------------------------------------------------------------------- /Setup_Google_Cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/Setup_Google_Cloud.md -------------------------------------------------------------------------------- /Setup_Virtual_Environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/Setup_Virtual_Environment.md -------------------------------------------------------------------------------- /acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeJGiordano/OCR_History/HEAD/acknowledgements.md --------------------------------------------------------------------------------