Re: Text Recognizer in API Builder.
Hi,
Here is how you should proceed
1. Add the Text recognition model as a datasource

2. In the "OnSelect" property of the camera control enter this formula
Set(TRResults, 'Text recognition'.Predict(Camera1.Photo).results)
3. Add any display component like a label and enter this in the "Text" property
First(First(TRResults.lines).lines).text
Here the formula retrieve the first line recognized but you can iterate with "FirstN" function