I am working on a medium scale app with a number of functions. I did most of the parts already. I just left the part of Text Recognition + OMR for attendance system. Can anyone give me some direction (documentation or tutorial i can follow) on android Text Recognition + OMR technology (working together) and the steps to implement my function? I will be eternally grateful to you for this help.
I have the number of functions which is unrelated to this one so I did not want to post those. The thing I need to do is, after taking the picture of the attendance sheet (with a marker, roll number, and bubble), my app needs to match the Roll no with Firebase Database. Then if the bubble is filled it should insert “Present” value (Firebase) and if the bubble is not filled it will insert “Absent” to the particular roll number's Attendance field in the database.
¿Do the image have always the same dimension and the answers are in the same position too?
If the answer is yes, you can crop each answer and then, split Roll no and Attendance columns in two separate images.
You can use OpenCV to make this: How to crop an image in OpenCV using Python
Then, you can use a OCR with the Roll no. image (Like Tesseract) and with the circle you can see if the center pixel of the circle is black or white.