Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
title: Optical Character Recognition
type: community
group: Computer Vision
image: /static/templates/optical-character-recognition.png
details: |
  <h1>Draw a bounding box or polygon around region and write down the text found inside</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>document digitization, invoice processing, receipt scanning, license plate recognition, banking automation, insurance claims, form processing, passport scanning, historical document preservation, library digitization, legal discovery, medical records</dd>
    <dt>Associated Models</dt>
    <dd>Tesseract, PaddleOCR, EasyOCR, TrOCR, CRAFT, DBNet</dd>
    <dt>Domain Terminology</dt>
    <dd>text detection, text recognition, handwriting recognition, document understanding</dd>
  </dl>
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"/>
    <Polygon name="poly" 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>