My android app have a need to read the text in a image and I am using the Firebase ML Kit for that purpose, it works well for the text which is in standard Roman script but it completely fails to read the digits in the below font family.
Especially for the digits 0, 1 & 6 Firebase result gives O, i, l, L & b, since it gives alternate letters for the same digit in different test I cannot apply regex to replace those letters with digits.
I have also tried the Firebase ML Kit cloud text recognition (Google Cloud Vision) for getting those digits as it is and it do have the same problem.
So my only option left is Firebase ML Kit Custom Model and I want to know on the possibility of reading text using ML Kit Custom Model which is based on TensorFlowLite model, I am asking this because all the android ML Kit Custom Model examples I saw is only used for detecting objects and didn't see any sample for reading text using MLKit custom model anywhere.
Basically what I want is the same behaviour like Firebase offline/cloud text recognition but with a custom tensorflow lite model, is that possible? Please describe