Hey I configure the abbyy sdk in android studio but I want some functionality in my app.
I want to work with the result that is shown after recognition on the screen.
I have to show result based on recognition.
Please tell me how can I get the result ?
Get Recognized text as string in android
Was this article helpful?
0 out of 0 found this helpful
Comments
1 comment
The Callback.onFrameProcessed method is where you work with the recognition results. This method is called on the UI thread to return the result when the frame is recognized. The result consists of one or more text lines represented by objects of the TextLine class. Each TextLine contains information about the enclosing quadrangle for a single line of text and the recognized text as a string. The results are represented in plain text without information about the font properties.
Please find more details about this method in the Help file.
Please sign in to leave a comment.