├── README.md ├── data ├── crop_image │ ├── show_image0.png │ ├── show_image1.png │ ├── show_image2.png │ ├── show_image3.png │ ├── show_image4.png │ └── show_image5.png ├── input_forms │ └── form_sample01.jpg ├── models │ ├── larger_CNN_model │ └── larger_CNN_weight ├── output │ └── final-output.png ├── temp │ ├── horizontal.jpg │ ├── output.png │ ├── temp1.jpg │ ├── temp2.jpg │ └── vertical.jpg └── template │ └── template_3.xml └── main ├── datasets.py ├── models.py ├── preprocessing.py ├── template_matching_ocr.ipynb └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/README.md -------------------------------------------------------------------------------- /data/crop_image/show_image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image0.png -------------------------------------------------------------------------------- /data/crop_image/show_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image1.png -------------------------------------------------------------------------------- /data/crop_image/show_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image2.png -------------------------------------------------------------------------------- /data/crop_image/show_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image3.png -------------------------------------------------------------------------------- /data/crop_image/show_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image4.png -------------------------------------------------------------------------------- /data/crop_image/show_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/crop_image/show_image5.png -------------------------------------------------------------------------------- /data/input_forms/form_sample01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/input_forms/form_sample01.jpg -------------------------------------------------------------------------------- /data/models/larger_CNN_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/models/larger_CNN_model -------------------------------------------------------------------------------- /data/models/larger_CNN_weight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/models/larger_CNN_weight -------------------------------------------------------------------------------- /data/output/final-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/output/final-output.png -------------------------------------------------------------------------------- /data/temp/horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/temp/horizontal.jpg -------------------------------------------------------------------------------- /data/temp/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/temp/output.png -------------------------------------------------------------------------------- /data/temp/temp1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/temp/temp1.jpg -------------------------------------------------------------------------------- /data/temp/temp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/temp/temp2.jpg -------------------------------------------------------------------------------- /data/temp/vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/temp/vertical.jpg -------------------------------------------------------------------------------- /data/template/template_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/data/template/template_3.xml -------------------------------------------------------------------------------- /main/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/main/datasets.py -------------------------------------------------------------------------------- /main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/main/models.py -------------------------------------------------------------------------------- /main/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/main/preprocessing.py -------------------------------------------------------------------------------- /main/template_matching_ocr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/main/template_matching_ocr.ipynb -------------------------------------------------------------------------------- /main/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarendraKumarSingh/form-extractor-ocr/HEAD/main/utils.py --------------------------------------------------------------------------------