Looking at the basic OCR task config:
<View>
<Image name="image" value="$ocr"/>
<Labels name="label" toName="image">
<Label value="Text" background="green"/>
<Label value="Handwriting" background="blue"/>
</Labels>
<Rectangle name="bbox" toName="image" strokeWidth="3"/>
<TextArea name="transcription" toName="image"
editable="true"
perRegion="true"
required="true"
maxSubmissions="1"
rows="5"
placeholder="Recognized Text"
displayMode="region-list"
/>
</View>
I’m wondering if it’s possible to add a <Shortcut>
tag for switching focus to the TextArea
after the bounding rectangle is drawn? It would be handy to the text area pop-up next-to the box after placed with auto-cursor focus, but I’m going to try to make the smaller ask (applicable directly for my usage) instead of a global ask.
From the docs page, it looks like the <Shortcut>
tag is only usable for inputting text, but it would be helpful to have a bit more functionality for speeding up OCR labeling. Additionally, I didn’t see anything related to the TextArea
tag that would accomplish this, but perhaps I missed something there. Appreciate the support