mirror of https://github.com/open-mmlab/mmocr.git
28 lines
391 B
Markdown
28 lines
391 B
Markdown
**Text Detection**
|
|
|
|
```text
|
|
# train split
|
|
# x1 y1 x2 y2 "transcript"
|
|
|
|
158 128 411 181 "Footpath"
|
|
443 128 501 169 "To"
|
|
64 200 363 243 "Colchester"
|
|
|
|
# test split
|
|
# x1, y1, x2, y2, "transcript"
|
|
|
|
38, 43, 920, 215, "Tiredness"
|
|
275, 264, 665, 450, "kills"
|
|
0, 699, 77, 830, "A"
|
|
```
|
|
|
|
**Text Recognition**
|
|
|
|
```text
|
|
# img_name, "text"
|
|
|
|
word_1.png, "PROPER"
|
|
word_2.png, "FOOD"
|
|
word_3.png, "PRONTO"
|
|
```
|