Reputation: 11
I am doing OCR with CloudVision API, but the accurary does not rise from 87%. I tried two [type] of [features], [TEXT_DETECTION] and [DOCUMENT_TEXT_DETECTION]. [language Hints] tried [la-u-nu-handwrit], [la-u-kr-latn-digit-handwrite], etc., but the result was the same as [en-t-i0-handwrite]. How can I improve the accuracy?
requests:[
{
image:{
content: b64
},
features:{
type: "DOCUMENT_TEXT_DETECTION",
},
imageContext:{
languageHints:"la-u-nu-handwrit",
}
}
]
requests:[
{
image:{
content: b64
},
features:{
type: "TEXT_DETECTION",
},
imageContext:{
languageHints:"la-u-kr-latn-digit-handwrite",
}
}
]
Upvotes: 1
Views: 374
Reputation: 184
In order to improve you accuracy, I would suggest that you also focus on the quality of the images and doing some pre-processing.
Some good practices would be to:
Hope that this helps!
Manu
Upvotes: 2