Validating the application form using OpenCV

The task is to validate validated application forms. Shapes should be checked against the shape of the template to determine if they are dirty, different, or not scanning properly (rotated or only half a scan).

I am currently using pattern matching and using the maximum value as a threshold to validate them. Are there any other good alternative solutions to test them. Any help is welcome.

+3


source to share


1 answer


You might want to look here Contour Analysis for Image Recognition in C # Basically this approach lets you compare shape handles. It is very powerful and fast, takes different turns or weights in percentages, but you will run into serious problems if the scan is skewed.



+2


source







All Articles