How to do template matching without opencv?
How to do template matching without OpenCV?
I have an order invoice of documents belonging to Amazon, eBay, Flipkart, SnapDeal, and I want to extract less information from the order invoice. Since the fields like the order number, customer name, order details will be present at different positions in these 4 templates,
I need to first classify to which of these 4 templates the input image will belong to and after identifying the template I can do my next work of text extraction using tesseract and regex buy writing code for specific templates.
When I searched I found the only OpenCV had this feature I was not able to find any convolution neural network model . Are there any such neural network models available for template matching and classification?
I cannot use the standard model available for classifying dogs and cats because here I'm dealing with the image of an invoice templates which has only text with rows and columns in some format.
Topic similar-documents cnn classification
Category Data Science