Text-recognition + OMR

1.5k Views Asked by At

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.

enter image description here

2

There are 2 best solutions below

4
On

¿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.

1
On

Since you did not mention that OCR must be done inside the app code, you can use AWS Rekognition with your Android app. Here are some of the links to get you started:

  1. AWS Mobile Hub
  2. AWS Lambda
  3. AWS Rekognition

Your workflow would be like:

  1. Take picture from app.
  2. Upload it to S3.
  3. Uploading to S3 will trigger AWS Lambda Function.
  4. You will implement your OCR logic in the Lambda Function in Java.
  5. You can use DynamoDB to persist your results or anything else.
  6. Send a notification to the device with the results.