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
この記事は役に立ちましたか?
0人中0人がこの記事が役に立ったと言っています
コメント
1件のコメント
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.
サインインしてコメントを残してください。