Been testing MLKit and have noticed less accurate results when compared with Google Vision. One thing I do have enabled is languageHints for Google Vision e.g.
image: {
content: base64String
},
features: [
{
type: "TEXT_DETECTION"
}
],
imageContext:
{
languageHints: ['en']
}
I'm thinking maybe I need to enable language hints for MLKit but no sure how. I am testing on both Android and IOS.
For MLKit the version I'm using is the latest v2 beta:
pod 'GoogleMLKit/TextRecognition', '3.1.0'
And for Android I'm using:
implementation 'com.google.mlkit:text-recognition:16.0.0-beta4'